本文整理汇总了PHP中PKPApplication::initialize方法的典型用法代码示例。如果您正苦于以下问题:PHP PKPApplication::initialize方法的具体用法?PHP PKPApplication::initialize怎么用?PHP PKPApplication::initialize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PKPApplication
的用法示例。
在下文中一共展示了PKPApplication::initialize方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: define
*
* Copyright (c) 2003-2008 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* @ingroup index
*
* @brief Core system initialization code.
* This file is loaded before any others.
* Any system-wide imports or initialization code should be placed here.
*/
// $Id$
/**
* Basic initialization (pre-classloading).
*/
// Update include path
define('ENV_SEPARATOR', strtolower(substr(PHP_OS, 0, 3)) == 'win' ? ';' : ':');
if (!defined('DIRECTORY_SEPARATOR')) {
// Older versions of PHP do not define this
define('DIRECTORY_SEPARATOR', strtolower(substr(PHP_OS, 0, 3)) == 'win' ? '\\' : '/');
}
define('BASE_SYS_DIR', dirname(dirname(__FILE__)));
ini_set('include_path', '.' . ENV_SEPARATOR . BASE_SYS_DIR . '/includes' . ENV_SEPARATOR . BASE_SYS_DIR . '/classes' . ENV_SEPARATOR . BASE_SYS_DIR . '/pages' . ENV_SEPARATOR . BASE_SYS_DIR . '/lib/pkp/classes' . ENV_SEPARATOR . BASE_SYS_DIR . '/lib/pkp/lib/adodb' . ENV_SEPARATOR . BASE_SYS_DIR . '/lib/pkp/lib/smarty' . ENV_SEPARATOR . ini_get('include_path'));
// System-wide functions
require 'functions.inc.php';
/**
* System initialization (post-classloading).
*/
import('core.OJSApplication');
$ojsApplication =& new OJSApplication();
PKPApplication::initialize($ojsApplication);
示例2: initialize
function initialize(&$application)
{
PKPApplication::initialize($application);
import('i18n.Locale');
import('core.Request');
}