Yii2 Bootstrap 3
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

567 lines
19 KiB

14 years ago
<?php
13 years ago
/**
* YiiBase class file.
*
* @link http://www.yiiframework.com/
* @copyright Copyright &copy; 2008-2012 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
14 years ago
/**
13 years ago
* Gets the application start timestamp.
14 years ago
*/
13 years ago
defined('YII_BEGIN_TIME') or define('YII_BEGIN_TIME', microtime(true));
14 years ago
/**
* This constant defines whether the application should be in debug mode or not. Defaults to false.
*/
13 years ago
defined('YII_DEBUG') or define('YII_DEBUG', false);
14 years ago
/**
* This constant defines how much call stack information (file name and line number) should be logged by Yii::trace().
* Defaults to 0, meaning no backtrace information. If it is greater than 0,
* at most that number of call stacks will be logged. Note, only user application call stacks are considered.
*/
13 years ago
defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 0);
14 years ago
/**
* This constant defines whether exception handling should be enabled. Defaults to true.
*/
13 years ago
defined('YII_ENABLE_EXCEPTION_HANDLER') or define('YII_ENABLE_EXCEPTION_HANDLER', true);
14 years ago
/**
* This constant defines whether error handling should be enabled. Defaults to true.
*/
13 years ago
defined('YII_ENABLE_ERROR_HANDLER') or define('YII_ENABLE_ERROR_HANDLER', true);
14 years ago
/**
13 years ago
* This constant defines the framework installation directory.
14 years ago
*/
13 years ago
defined('YII_PATH') or define('YII_PATH', __DIR__);
14 years ago
/**
13 years ago
* YiiBase is the core helper class for the Yii framework.
14 years ago
*
13 years ago
* Do not use YiiBase directly. Instead, use its child class [[Yii]] where
14 years ago
* you can customize methods of YiiBase.
*
* @author Qiang Xue <qiang.xue@gmail.com>
13 years ago
* @since 2.0
14 years ago
*/
class YiiBase
{
/**
* @var array class map used by the Yii autoloading mechanism.
13 years ago
* The array keys are the class names, and the array values are the corresponding class file paths.
* This property mainly affects how [[autoload]] works.
13 years ago
* @see import
* @see autoload
13 years ago
*/
public static $classMap = array();
/**
* @var array list of directories where Yii will search for new classes to be included.
* The first directory in the array will be searched first, and so on.
* This property mainly affects how [[autoload]] works.
13 years ago
* @see import
* @see autoload
13 years ago
*/
public static $classPath = array();
/**
* @var yii\base\Application the application instance
14 years ago
*/
13 years ago
public static $app;
13 years ago
/**
* @var array registered path aliases
13 years ago
* @see getAlias
* @see setAlias
13 years ago
*/
public static $aliases = array(
13 years ago
'@yii' => __DIR__,
13 years ago
);
13 years ago
/**
* @var array initial property values that will be applied to objects newly created via [[createObject]].
* The array keys are fully qualified namespaced class names, and the array values are the corresponding
* name-value pairs for initializing the created class instances. Make sure the class names do not have
* the leading backslashes. For example,
*
* ~~~
* array(
* 'mycompany\foo\Bar' => array(
* 'prop1' => 'value1',
* 'prop2' => 'value2',
* ),
* 'mycompany\foo\Car' => array(
* 'prop1' => 'value1',
* 'prop2' => 'value2',
* ),
* )
* ~~~
*
* @see createObject
*/
public static $objectConfig = array();
14 years ago
13 years ago
private static $_imported = array(); // alias => class name or directory
private static $_logger;
14 years ago
/**
* @return string the version of Yii framework
*/
public static function getVersion()
{
13 years ago
return '2.0-dev';
14 years ago
}
/**
* Imports a class or a directory.
*
* Importing a class is like including the corresponding class file.
* The main difference is that importing a class is much lighter because it only
13 years ago
* includes the class file when the class is referenced in the code the first time.
14 years ago
*
13 years ago
* Importing a directory will add the directory to the front of the [[classPath]] array.
* When [[autoload]] is loading an unknown class, it will search in the directories
* specified in [[classPath]] to find the corresponding class file to include.
* For this reason, if multiple directories are imported, the directories imported later
* will take precedence in class file searching.
14 years ago
*
13 years ago
* The same class or directory can be imported multiple times. Only the first importing
* will count. Importing a directory does not import any of its subdirectories.
14 years ago
*
13 years ago
* To import a class or a directory, one can use either path alias or class name (can be namespaced):
14 years ago
*
13 years ago
* - `@app/components/GoogleMap`: importing the `GoogleMap` class with a path alias;
* - `GoogleMap`: importing the `GoogleMap` class with a class name;
* - `@app/components/*`: importing the whole `components` directory with a path alias.
14 years ago
*
13 years ago
* @param string $alias path alias or a simple class name to be imported
14 years ago
* @param boolean $forceInclude whether to include the class file immediately. If false, the class file
* will be included only when the class is being used. This parameter is used only when
* the path alias refers to a class.
* @return string the class name or the directory that this alias refers to
13 years ago
* @throws \yii\base\Exception if the path alias is invalid
14 years ago
*/
13 years ago
public static function import($alias, $forceInclude = false)
14 years ago
{
13 years ago
if (isset(self::$_imported[$alias])) {
return self::$_imported[$alias];
}
14 years ago
13 years ago
if (class_exists($alias, false) || interface_exists($alias, false)) {
return self::$_imported[$alias] = $alias;
14 years ago
}
13 years ago
if ($alias[0] !== '@') { // a simple class name
13 years ago
if ($forceInclude && static::autoload($alias)) {
13 years ago
self::$_imported[$alias] = $alias;
}
14 years ago
return $alias;
}
13 years ago
$className = basename($alias);
13 years ago
$isClass = $className !== '*';
14 years ago
13 years ago
if ($isClass && (class_exists($className, false) || interface_exists($className, false))) {
return self::$_imported[$alias] = $className;
}
14 years ago
13 years ago
if (($path = static::getAlias(dirname($alias))) === false) {
13 years ago
throw new \yii\base\Exception('Invalid path alias: ' . $alias);
}
14 years ago
13 years ago
if ($isClass) {
if ($forceInclude) {
require($path . "/$className.php");
self::$_imported[$alias] = $className;
13 years ago
} else {
13 years ago
self::$classMap[$className] = $path . "/$className.php";
}
return $className;
13 years ago
} else { // a directory
13 years ago
array_unshift(self::$classPath, $path);
return self::$_imported[$alias] = $path;
14 years ago
}
}
/**
13 years ago
* Translates a path alias into an actual path.
13 years ago
*
13 years ago
* The path alias can be either a root alias registered via [[setAlias]] or an
13 years ago
* alias starting with a root alias (e.g. `@yii/base/Component.php`).
* In the latter case, the root alias will be replaced by the corresponding registered path
* and the remaining part will be appended to it.
13 years ago
*
13 years ago
* In case the given parameter is not an alias (i.e., not starting with '@'),
* it will be returned back without change.
13 years ago
*
13 years ago
* Note, this method does not ensure the existence of the resulting path.
* @param string $alias alias
* @return mixed path corresponding to the alias, false if the root alias is not previously registered.
13 years ago
* @see setAlias
14 years ago
*/
13 years ago
public static function getAlias($alias)
14 years ago
{
13 years ago
if (isset(self::$aliases[$alias])) {
return self::$aliases[$alias];
13 years ago
} elseif ($alias[0] !== '@') { // not an alias
13 years ago
return $alias;
13 years ago
} elseif (($pos = strpos($alias, '/')) !== false) {
13 years ago
$rootAlias = substr($alias, 0, $pos);
13 years ago
if (isset(self::$aliases[$rootAlias])) {
return self::$aliases[$alias] = self::$aliases[$rootAlias] . substr($alias, $pos);
14 years ago
}
}
return false;
}
/**
13 years ago
* Registers a path alias.
13 years ago
*
13 years ago
* A path alias is a short name representing a path (a file path, a URL, etc.)
* A path alias must start with '@' (e.g. '@yii').
13 years ago
*
13 years ago
* Note that this method neither checks the existence of the path nor normalizes the path.
13 years ago
* Any trailing '/' and '\' characters in the path will be trimmed.
*
13 years ago
* @param string $alias alias to the path. The alias must start with '@'.
13 years ago
* @param string $path the path corresponding to the alias. This can be
*
* - a directory or a file path (e.g. `/tmp`, `/tmp/main.txt`)
* - a URL (e.g. `http://www.yiiframework.com`)
* - a path alias (e.g. `@yii/base`). In this case, the path alias will be converted into the
* actual path first by calling [[getAlias]].
13 years ago
* @see getAlias
14 years ago
*/
13 years ago
public static function setAlias($alias, $path)
14 years ago
{
13 years ago
if ($path === null) {
13 years ago
unset(self::$aliases[$alias]);
13 years ago
} elseif ($path[0] !== '@') {
13 years ago
self::$aliases[$alias] = rtrim($path, '\\/');
13 years ago
} elseif (($p = static::getAlias($path)) !== false) {
13 years ago
self::$aliases[$alias] = $p;
13 years ago
} else {
13 years ago
throw new \yii\base\Exception('Invalid path: ' . $path);
}
14 years ago
}
/**
* Class autoload loader.
13 years ago
* This method is invoked automatically when the execution encounters an unknown class.
* The method will attempt to include the class file as follows:
*
* 1. Search in [[classMap]];
* 2. If the class is namespaced (e.g. `yii\base\Component`), it will attempt
* to include the file associated with the corresponding path alias
* (e.g. `@yii/base/Component.php`);
* 3. If the class is named in PEAR style (e.g. `PHPUnit_Framework_TestCase`),
* it will attempt to include the file associated with the corresponding path alias
* (e.g. `@PHPUnit/Framework/TestCase.php`);
* 4. Search in [[classPath]];
* 5. Return false so that other autoloaders have chance to include the class file.
*
14 years ago
* @param string $className class name
* @return boolean whether the class has been loaded successfully
*/
public static function autoload($className)
{
13 years ago
if (isset(self::$classMap[$className])) {
14 years ago
include(self::$classMap[$className]);
13 years ago
return true;
}
// namespaced class, e.g. yii\base\Component
if (strpos($className, '\\') !== false) {
// convert namespace to path alias, e.g. yii\base\Component to @yii/base/Component
13 years ago
$alias = '@' . str_replace('\\', '/', ltrim($className, '\\'));
13 years ago
if (($path = static::getAlias($alias)) !== false) {
13 years ago
include($path . '.php');
return true;
14 years ago
}
13 years ago
return false;
14 years ago
}
13 years ago
// PEAR-styled class, e.g. PHPUnit_Framework_TestCase
if (($pos = strpos($className, '_')) !== false) {
// convert class name to path alias, e.g. PHPUnit_Framework_TestCase to @PHPUnit/Framework/TestCase
$alias = '@' . str_replace('_', '/', $className);
13 years ago
if (($path = static::getAlias($alias)) !== false) {
13 years ago
include($path . '.php');
return true;
}
}
// search in include paths
foreach (self::$classPath as $path) {
$classFile = $path . DIRECTORY_SEPARATOR . $className . '.php';
if (is_file($classFile)) {
include($classFile);
return true;
}
}
return false;
14 years ago
}
/**
13 years ago
* Creates a new object using the given configuration.
13 years ago
*
13 years ago
* The configuration can be either a string or an array.
* If a string, it is treated as the *object type*; if an array,
* it must contain a `class` element specifying the *object type*, and
13 years ago
* the rest of the name-value pairs in the array will be used to initialize
* the corresponding object properties.
*
13 years ago
* The object type can be either a class name or the [[getAlias|alias]] of
13 years ago
* the class. For example,
13 years ago
*
13 years ago
* - `\app\components\GoogleMap`: namespaced class
* - `@app/components/GoogleMap`: an alias
*
* This method does the following steps to create an object:
*
* - create the object using the PHP `new` operator;
* - if [[objectConfig]] contains the configuration for the object class,
* initialize the object properties with that configuration;
* - initialize the object properties using the configuration passed to this method;
* - call the `init` method of the object if it implements the [[yii\base\Initable]] interface.
*
* Below are some usage examples:
*
13 years ago
* ~~~
13 years ago
* $object = \Yii::createObject('@app/components/GoogleMap');
* $object = \Yii::createObject(array(
* 'class' => '\app\components\GoogleMap',
13 years ago
* 'apiKey' => 'xyz',
* ));
* ~~~
*
13 years ago
* Any additional parameters passed to this method will be
* passed to the constructor of the object being created.
*
13 years ago
* @param mixed $config the configuration. It can be either a string or an array.
* @return mixed the created object
13 years ago
* @throws \yii\base\Exception if the configuration is invalid.
13 years ago
*/
13 years ago
public static function createObject($config)
13 years ago
{
if (is_string($config)) {
13 years ago
$class = $config;
13 years ago
$config = array();
13 years ago
} elseif (isset($config['class'])) {
13 years ago
$class = $config['class'];
13 years ago
unset($config['class']);
13 years ago
} else {
13 years ago
throw new \yii\base\Exception('Object configuration must be an array containing a "class" element.');
}
13 years ago
if (!class_exists($class, false)) {
$class = static::import($class, true);
13 years ago
}
13 years ago
if (($n = func_num_args()-1) > 0) {
13 years ago
$args = func_get_args();
13 years ago
array_shift($args); // remove $config
13 years ago
}
13 years ago
if ($n === 0) {
13 years ago
$object = new $class;
13 years ago
} elseif ($n === 1) {
$object = new $class($args[0]);
} elseif ($n === 2) {
$object = new $class($args[0], $args[1]);
} elseif ($n === 3) {
$object = new $class($args[0], $args[1], $args[2]);
} else {
$r = new \ReflectionClass($class);
$object = $r->newInstanceArgs($args);
}
$c = get_class($object);
if (isset(\Yii::$objectConfig[$c])) {
$config = isset($config) ? array_merge(\Yii::$objectConfig[$c], $config) : \Yii::$objectConfig[$c];
13 years ago
}
13 years ago
if (!empty($config)) {
foreach ($config as $name => $value) {
$object->$name = $value;
}
13 years ago
}
if ($object instanceof \yii\base\Initable) {
$object->init();
13 years ago
}
13 years ago
}
/**
13 years ago
* Logs a trace message.
* Trace messages are logged mainly for development purpose to see
* the execution work flow of some code.
* @param string $message the message to be logged.
* @param string $category the category of the message.
14 years ago
*/
13 years ago
public static function trace($message, $category = 'application')
14 years ago
{
13 years ago
if (YII_DEBUG) {
13 years ago
self::getLogger()->trace($message, $category);
13 years ago
}
14 years ago
}
/**
13 years ago
* Logs an error message.
* An error message is typically logged when an unrecoverable error occurs
* during the execution of an application.
* @param string $message the message to be logged.
* @param string $category the category of the message.
14 years ago
*/
13 years ago
public static function error($message, $category = 'application')
14 years ago
{
13 years ago
self::getLogger()->error($message, $category);
}
/**
* Logs a warning message.
* A warning message is typically logged when an error occurs while the execution
* can still continue.
* @param string $message the message to be logged.
* @param string $category the category of the message.
*/
13 years ago
public static function warning($message, $category = 'application')
13 years ago
{
13 years ago
self::getLogger()->warning($message, $category);
14 years ago
}
/**
13 years ago
* Logs an informative message.
* An informative message is typically logged by an application to keep record of
* something important (e.g. an administrator logs in).
* @param string $message the message to be logged.
* @param string $category the category of the message.
*/
13 years ago
public static function info($message, $category = 'application')
13 years ago
{
self::getLogger()->info($message, $category);
}
/**
* Marks the beginning of a code block for profiling.
* This has to be matched with a call to [[endProfile]] with the same category name.
* The begin- and end- calls must also be properly nested. For example,
*
* ~~~
* \Yii::beginProfile('block1');
13 years ago
* // some code to be profiled
* \Yii::beginProfile('block2');
* // some other code to be profiled
* \Yii::endProfile('block2');
13 years ago
* \Yii::endProfile('block1');
* ~~~
13 years ago
* @param string $token token for the code block
* @param string $category the category of this log message
14 years ago
* @see endProfile
*/
13 years ago
public static function beginProfile($token, $category = 'application')
14 years ago
{
13 years ago
self::getLogger()->beginProfile($token, $category);
14 years ago
}
/**
* Marks the end of a code block for profiling.
13 years ago
* This has to be matched with a previous call to [[beginProfile]] with the same category name.
13 years ago
* @param string $token token for the code block
* @param string $category the category of this log message
14 years ago
* @see beginProfile
*/
13 years ago
public static function endProfile($token, $category = 'application')
14 years ago
{
13 years ago
self::getLogger()->endProfile($token, $category);
14 years ago
}
/**
13 years ago
* Returns the message logger object.
* @return \yii\logging\Logger message logger
14 years ago
*/
public static function getLogger()
{
13 years ago
if (self::$_logger !== null) {
14 years ago
return self::$_logger;
13 years ago
} else {
13 years ago
return self::$_logger = new \yii\logging\Logger;
}
13 years ago
}
/**
* Sets the logger object.
13 years ago
* @param \yii\logging\Logger $logger the logger object.
13 years ago
*/
public static function setLogger($logger)
{
self::$_logger = $logger;
14 years ago
}
/**
13 years ago
* Returns an HTML hyperlink that can be displayed on your Web page showing Powered by Yii" information.
* @return string an HTML hyperlink that can be displayed on your Web page showing Powered by Yii" information
14 years ago
*/
public static function powered()
{
return 'Powered by <a href="http://www.yiiframework.com/" rel="external">Yii Framework</a>.';
}
/**
* Translates a message to the specified language.
* This method supports choice format (see {@link CChoiceFormat}),
14 years ago
* i.e., the message returned will be chosen from a few candidates according to the given
* number value. This feature is mainly used to solve plural format issue in case
* a message has different plural forms in some languages.
* @param string $category message category. Please use only word letters. Note, category 'yii' is
* reserved for Yii framework core code use. See {@link CPhpMessageSource} for
* more interpretation about message category.
* @param string $message the original message
* @param array $params parameters to be applied to the message using <code>strtr</code>.
* The first parameter can be a number without key.
14 years ago
* And in this case, the method will call {@link CChoiceFormat::format} to choose
* an appropriate message translation.
* You can pass parameter for {@link CChoiceFormat::format}
14 years ago
* or plural forms format without wrapping it with array.
* @param string $source which message source application component to use.
* Defaults to null, meaning using 'coreMessages' for messages belonging to
* the 'yii' category and using 'messages' for the rest messages.
* @param string $language the target language. If null (default), the {@link CApplication::getLanguage application language} will be used.
* @return string the translated message
* @see CMessageSource
*/
13 years ago
public static function t($category, $message, $params = array(), $source = null, $language = null)
14 years ago
{
13 years ago
if (self::$app !== null)
14 years ago
{
13 years ago
if ($source === null)
13 years ago
$source = $category === 'yii' ? 'coreMessages' : 'messages';
if (($source = self::$app->getComponent($source)) !== null)
13 years ago
$message = $source->translate($category, $message, $language);
14 years ago
}
13 years ago
if ($params === array())
14 years ago
return $message;
13 years ago
if (!is_array($params))
$params = array($params);
if (isset($params[0])) // number choice
14 years ago
{
13 years ago
if (strpos($message, '|') !== false)
14 years ago
{
13 years ago
if (strpos($message, '#') === false)
14 years ago
{
13 years ago
$chunks = explode('|', $message);
13 years ago
$expressions = self::$app->getLocale($language)->getPluralRules();
13 years ago
if ($n = min(count($chunks), count($expressions)))
14 years ago
{
13 years ago
for ($i = 0;$i < $n;$i++)
$chunks[$i] = $expressions[$i] . '#' . $chunks[$i];
14 years ago
13 years ago
$message = implode('|', $chunks);
14 years ago
}
}
13 years ago
$message = CChoiceFormat::format($message, $params[0]);
14 years ago
}
13 years ago
if (!isset($params['{n}']))
$params['{n}'] = $params[0];
14 years ago
unset($params[0]);
}
13 years ago
return $params !== array() ? strtr($message, $params) : $message;
14 years ago
}
}