當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Hooks::get_option方法代碼示例

本文整理匯總了PHP中Hooks::get_option方法的典型用法代碼示例。如果您正苦於以下問題:PHP Hooks::get_option方法的具體用法?PHP Hooks::get_option怎麽用?PHP Hooks::get_option使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Hooks的用法示例。


在下文中一共展示了Hooks::get_option方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: defined

 * Site Root
 *  
 * PHP 5
 *
 * tinyPHP(tm) : Simple & Lightweight MVC Framework (http://tinyphp.us/)
 * Copyright 2012, 7 Media Web Solutions, LLC (http://www.7mediaws.org/)
 *
 * Licensed under The MIT License
 * Redistributions of files must retain the above copyright notice.
 *
 * @copyright Copyright 2012, 7 Media Web Solutions, LLC (http://www.7mediaws.org/)
 * @link http://tinyphp.us/ tinyPHP(tm) Project
 * @since tinyPHP(tm) v 0.1
 * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
 */
defined('DS') or define('DS', DIRECTORY_SEPARATOR);
defined('BASE_PATH') or define('BASE_PATH', __DIR__ . DS);
defined('APP_FOLDER') or define('APP_FOLDER', 'Application');
defined('SYS_PATH') or define('SYS_PATH', BASE_PATH . 'tinyPHP' . DS);
defined('APP_PATH') or define('APP_PATH', SYS_PATH . APP_FOLDER . DS);
defined('LOCALE_DIR') or define('LOCALE_DIR', SYS_PATH . 'Locale');
defined('DEFAULT_LOCALE') or define('DEFAULT_LOCALE', '');
defined('ENCODING') or define('ENCODING', 'UTF-8');
defined('CURRENT_VERSION') or define('CURRENT_VERSION', '1.0.0');
require SYS_PATH . 'application.php';
$cookieDomain = new \tinyPHP\Classes\Libraries\Cookies();
defined('COOKIE_EXPIRE') or define('COOKIE_EXPIRE', time() + \tinyPHP\Classes\Libraries\Hooks::get_option('cookieexpire'));
defined('COOKIE_PATH') or define('COOKIE_PATH', \tinyPHP\Classes\Libraries\Hooks::get_option('cookiepath'));
defined('COOKIE_DOMAIN') or define('COOKIE_DOMAIN', $cookieDomain->cookieDomain());
defined('DEFAULT_LOCALE') or define('DEFAULT_LOCALE', Hooks::get_option('core_locale'));
$app = new \tinyPHP\Classes\Core\Bootstrap();
開發者ID:jmcismail,項目名稱:tinyPHP,代碼行數:31,代碼來源:index.php


注:本文中的Hooks::get_option方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。