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


PHP dir::layout方法代碼示例

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


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

示例1: svg

 public static function svg($icon)
 {
     ob_start();
     include dir::layout('icons/' . $icon . '.svg', rp::get('layout'));
     $return = ob_get_contents();
     ob_end_clean();
     return $return;
 }
開發者ID:DINKIN,項目名稱:rokket,代碼行數:8,代碼來源:layout.php

示例2: foreach

    echo message::success($success);
}
layout::addNav(lang::get('dashboard'), 'dashboard', 'home', ['refresh'], true);
layout::addNav(lang::get('settings'), 'settings', 'settings', [], false);
layout::addNav(lang::get('server'), 'server', 'list', ['add'], true);
layout::addNav(lang::get('addons'), 'addons', 'alt', [], true);
layout::addNav(lang::get('user'), 'user', 'users', ['add'], true);
foreach (addonConfig::includeAllConfig() as $file) {
    include $file;
}
if (userLogin::isLogged()) {
    $path = 'pages/' . $page . '.php';
    $path = extension::get('PAGE_PATH', $path);
    if (file_exists($path)) {
        include $path;
    } else {
        echo message::danger(lang::get('page_not_found'), false);
    }
}
$content = ob_get_contents();
ob_end_clean();
rp::add('content', $content);
if (ajax::is()) {
    echo ajax::getReturn();
    die;
}
if (userLogin::isLogged()) {
    include dir::layout('index.php', rp::get('layout'));
} else {
    include dir::layout('login.php', rp::get('layout'));
}
開發者ID:kyroskoh,項目名稱:rokket,代碼行數:31,代碼來源:index.php

示例3: lessc

<?php

if ($action == 'deleteCache') {
    cache::clear();
    echo message::success(lang::get('delete_cache_success'));
}
if ($action == 'generateCSS') {
    $less = new lessc();
    $error = false;
    $newCSS = '';
    try {
        $newCSS = $less->compileFile(dir::layout('less/style.less', rp::get('layout')));
        $fp = fopen(dir::layout('css/style.css', rp::get('layout')), "wb");
        fwrite($fp, $newCSS);
        fclose($fp);
    } catch (exception $e) {
        echo message::danger($e->getMessage());
        $error = true;
    }
    if (!$error) {
        echo message::success(lang::get('generate_css_success'));
    }
}
if (isset($_POST['send'])) {
    rp::add('lang', type::post('lang', 'string'), true);
    rp::add('logs', type::post('logs', 'int'), true);
    rp::add('ip', type::post('ip', 'string'), true);
    rp::add('email', type::post('email', 'string'), true);
    rp::add('emailNot', type::post('emailNot', 'int'), true);
    rp::save();
    echo message::success(lang::get('settings_edited'));
開發者ID:DINKIN,項目名稱:rokket,代碼行數:31,代碼來源:settings.php


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