[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.2 KiB
MD5: 0a41ee4f884c236cf83a37b5b0125d63

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-2014 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: DrByte  Tue Apr 1 15:45:22 2014 -0400 Modified in v1.5.3 $
  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 plugin support functions
  33.  */
  34. require(DIR_FS_CATALOG . DIR_WS_FUNCTIONS . 'plugin_support.php');
  35. /**
  36.  * require the password crypto functions
  37.  */
  38. require(DIR_WS_FUNCTIONS . 'password_funcs.php');
  39. /**
  40.  * User Defined Functions
  41.  */
  42. include(DIR_WS_MODULES . 'extra_functions.php');
  43.  


cron