当前位置: 首页>>代码示例>>PHP>>正文


PHP Mapper::set_template_path方法代码示例

本文整理汇总了PHP中Mapper::set_template_path方法的典型用法代码示例。如果您正苦于以下问题:PHP Mapper::set_template_path方法的具体用法?PHP Mapper::set_template_path怎么用?PHP Mapper::set_template_path使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Mapper的用法示例。


在下文中一共展示了Mapper::set_template_path方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: extract

    // theme MUST be present in /wp-content/themes
    // plugins from /wp-content/plugins will take precedent
    // todo wp-plugins not supported yet in this plugins folder
    extract($loader->load(file_get_contents($content_config)));
    extract(${$env}['enable_db']);
}
$wp_theme = "wp-content" . DIRECTORY_SEPARATOR . "themes" . DIRECTORY_SEPARATOR . $env['theme'];
if (file_exists($wp_theme)) {
    $GLOBALS['PATH']['content_plugins'] = 'wp-content' . DIRECTORY_SEPARATOR . 'plugins' . DIRECTORY_SEPARATOR;
    $GLOBALS['PATH']['themes'] = "wp-content" . DIRECTORY_SEPARATOR . "themes" . DIRECTORY_SEPARATOR;
} else {
    $GLOBALS['PATH']['themes'] = $request->template_path . 'wp-themes' . DIRECTORY_SEPARATOR;
}
// set up the content-negotiation template paths
if (is_dir($app . $env['view_folder'])) {
    $request->set_template_path($app . $env['view_folder'] . DIRECTORY_SEPARATOR);
} else {
    $request->set_template_path($env['view_folder'] . DIRECTORY_SEPARATOR);
}
if (is_dir($app . $env['layout_folder'])) {
    $request->set_layout_path($app . $env['layout_folder'] . DIRECTORY_SEPARATOR);
} else {
    $request->set_layout_path($env['layout_folder'] . DIRECTORY_SEPARATOR);
}
/**
 * connect to the database with settings from config.yml
 */
// load dbscript database support classes
db_include(array('database', 'model', 'record', 'recordset', 'resultiterator', $adapter));
if (DB_NAME) {
    $database = DB_NAME;
开发者ID:Br3nda,项目名称:openmicroblogger,代码行数:31,代码来源:boot.php


注:本文中的Mapper::set_template_path方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。