本文整理匯總了PHP中Framework::classLocate方法的典型用法代碼示例。如果您正苦於以下問題:PHP Framework::classLocate方法的具體用法?PHP Framework::classLocate怎麽用?PHP Framework::classLocate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Framework
的用法示例。
在下文中一共展示了Framework::classLocate方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: __autoload_modules
function __autoload_modules($class)
{
$class_file = Framework::classLocate($class);
if (file_exists($class_file)) {
require_once $class_file;
}
}
示例2: __construct
/**
* Creates a Module and sets up the path and class name
* @return Module
*/
public function __construct($class = null)
{
if (!$class) {
$class = get_class($this);
}
$this->class = $class;
if ($this->class === __CLASS__) {
$this->path = SERVER_DIR . '/core/';
} else {
$this->path = dirname(Framework::classLocate($this->class));
}
}
示例3: locate
/**
* Locates a resource
*/
public function locate($actions, $options)
{
$class = array_shift($actions);
if ($class == 'app') {
$class_dir = SERVER_APP_DIR;
} else {
if ($class == 'core') {
$class_dir = SERVER_CORE_DIR;
} else {
$class_file = Framework::classLocate($class);
$class_dir = dirname($class_file);
}
}
$this->write($class_dir . "\n");
}