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


PHP tpl::display方法代碼示例

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


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

示例1: tpl

<?php

require_once '../class.tpl.php';
$tpl = new tpl();
$tpl->assign(array('hello' => 'Hello', 'world' => 'World'));
$tpl->display('index.tpl');
開發者ID:rohm1,項目名稱:phpMyTemplate,代碼行數:6,代碼來源:index.php

示例2: array

<?php

/*
	Created by ANDRAS Zoltan Gyarfas azolee@gmail.com in 2015
*/
include_once './core/init.php';
global $header;
global $page;
$page = array("title" => "", "header" => "", "nav" => "", "content" => "");
$contentManager = Page::instance();
$urlPath = trim(filter_input(INPUT_GET, "path", FILTER_SANITIZE_STRING), "/");
global $url;
$url = $contentManager->getUrlDetails($urlPath);
$contentManager->generatePage($url);
$page['content'] = $contentManager->getPageContent();
$page['title'] = $contentManager->getPageTitle();
$m = $contentManager->loadNav();
if (!empty($m)) {
    $page = array_merge($m, $page);
}
if (file_exists(TEMPLATES . DS . $contentManager->getPageTemplate())) {
    echo tpl::display($page, TEMPLATES . DS . $contentManager->getPageTemplate());
}
開發者ID:azolee,項目名稱:FlatCMS,代碼行數:23,代碼來源:index.php

示例3: elseif

//當前語言下的欄目
@set_time_limit(0);
if ($action == 'htm') {
    include 'template/admin_htm_index.html';
} elseif ($action == 'index') {
    //生成首頁
    //global $lang,$_confing,$_index,$language,$tpl;
    if (!$_confing['web_html'][0]) {
        err('<span style="color:red">請先開啟【' . $lang . '】語言的html生成</span>');
    }
    $index_url = get_index_url($lang);
    //設定訪問的語言
    ob_start();
    $index_focus = "focus";
    $index_fl = $index_url ? CMS_PATH . 'index.html' : CMS_PATH . 'index_' . $lang . '.html';
    $tpl->display('index');
    creat_html($index_fl);
    $index_fl = $index_url ? CMS_SELF . 'index.html' : CMS_SELF . 'index_' . $lang . '.html';
    err('首頁生成完成【<a target="_blank" href="' . $index_fl . '">瀏覽' . $lang . '語言首頁</a>】');
    //欄目生成界麵
} elseif ($action == 'cate') {
    global $lang;
    if (file_exists(DATA_PATH . 'cache_cate/cate_list_' . $lang . '.php')) {
        include DATA_PATH . 'cache_cate/cate_list_' . $lang . '.php';
    }
    include 'template/admin_htm_cate.html';
    //生成欄目
} elseif ($action == 'cate_htm') {
    if (!$_confing['web_html'][0]) {
        err('<span style="color:red">請先開啟【' . $lang . '】語言的html生成</span>');
    }
開發者ID:BGCX261,項目名稱:zhuoao-svn-to-git,代碼行數:31,代碼來源:admin_htm.php

示例4:

            $api->set($arr_u_group[4][$i], "");
        } else {
            // или показываем
            $api->set($arr_u_group[1][$i], "");
            $api->set($arr_u_group[4][$i], "");
        }
    } else {
        // проверяем на вхождение
        if ($arr_s !== false) {
            // если найдено, то скрываем контент
            $api->set($arr_u_group[1][$i], "");
            $api->set($arr_u_group[3][$i], "");
            $api->set($arr_u_group[4][$i], "");
        } else {
            // или показываем
            $api->set($arr_u_group[1][$i], "");
            $api->set($arr_u_group[4][$i], "");
        }
    }
    $i++;
}
unset($i);
unset($value);
#   USER GROUP HIDE AND
#############################################
$copy = '<a href="http://apps-system.ru/" target="_blank" style="position: fixed; bottom: 1px; right: 10px; font-size: 10px; color: #7888A0;">&copy; 2015-2016 apps-system.ru</a>
<!-- powered by apps-system.ru -->';
$api->set("</body>", $copy . PHP_EOL . "</body>");
$tpl->set("{content}", $api->give());
$tpl->display();
開發者ID:Kylaksizov,項目名稱:apps-system,代碼行數:30,代碼來源:index.php


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