[phpBB Debug] PHP Warning: in file [ROOT]/includes/crs/crs_misc_functions.php on line 37: mime_content_type(): Empty filename or path
[phpBB Debug] PHP Warning: in file [ROOT]/includes/crs/crs_misc_functions.php on line 37: mime_content_type(): Empty filename or path
Zen Cart 源代码 init_general_funcs.php

Zen Cart 源代码 init_general_funcs.php




下载文件

文件名: init_general_funcs.php
文件类型: PHP文件
文件大小: 995 Bytes
MD5: 727bf0e4a4ca3141386aca3508acf15c

init_general_funcs.php - 关闭高亮
  1. <?php
  2. /**
  3.  * load the system wide functions
  4.  * see {@link  http://www.zen-cart.com/wiki/index.php/Developers_API_Tutorials#InitSystem wikitutorials} for more details.
  5.  *
  6.  * @package initSystem
  7.  * @copyright Copyright 2003-2005 Zen Cart Development Team
  8.  * @copyright Portions Copyright 2003 osCommerce
  9.  * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
  10.  * @version $Id: init_general_funcs.php 2845 2006-01-13 06:49:15Z drbyte $
  11.  */
  12. if (!defined('IS_ADMIN_FLAG')) {
  13.   die('Illegal Access');
  14. }
  15. /**
  16.  * General Functions
  17.  */
  18. require(DIR_WS_FUNCTIONS . 'functions_general.php');
  19. /**
  20.  * html_output functions (href_links, input types etc)
  21.  */
  22. require(DIR_WS_FUNCTIONS . 'html_output.php');
  23. /**
  24.  * basic email functions
  25.  */
  26. require(DIR_WS_FUNCTIONS . 'functions_email.php');
  27. /**
  28.  * EZ-Pages functions
  29.  */
  30. require(DIR_WS_FUNCTIONS . 'functions_ezpages.php');
  31. /**
  32.  * User Defined Functions
  33.  */
  34. include(DIR_WS_MODULES . 'extra_functions.php');
  35. ?>