本文整理汇总了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");
}