[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文件
文件大小: 1.09 KiB
MD5: 8810bb645d0793618160beeab9df5179

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-2012 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 GIT: $Id: Author: Ian Wilson  Tue Jul 24 11:36:47 2012 +0100 Modified in v1.5.1 $
  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.  * require the password crypto functions
  33.  */
  34. require(DIR_WS_FUNCTIONS . 'password_funcs.php');
  35. /**
  36.  * User Defined Functions
  37.  */
  38. include(DIR_WS_MODULES . 'extra_functions.php');
  39. ?>