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


PHP TPage::getLoadedJS方法代码示例

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


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

示例1: run

 public static function run($debug = FALSE)
 {
     $class = isset($_REQUEST['class']) ? $_REQUEST['class'] : '';
     $static = isset($_REQUEST['static']) ? $_REQUEST['static'] : '';
     $method = isset($_REQUEST['method']) ? $_REQUEST['method'] : '';
     $content = '';
     set_error_handler(array('TCoreApplication', 'errorHandler'));
     if (class_exists($class)) {
         if ($static) {
             $rf = new ReflectionMethod($class, $method);
             if ($rf->isStatic()) {
                 call_user_func(array($class, $method), $_REQUEST);
             } else {
                 call_user_func(array(new $class(), $method), $_REQUEST);
             }
         } else {
             try {
                 $page = new $class($_GET);
                 ob_start();
                 $page->show($_GET);
                 $content = ob_get_contents();
                 ob_end_clean();
             } catch (Exception $e) {
                 ob_start();
                 if ($debug) {
                     new TExceptionView($e);
                     $content = ob_get_contents();
                 } else {
                     new TMessage('error', $e->getMessage());
                     $content = ob_get_contents();
                 }
                 ob_end_clean();
             }
         }
     } else {
         if (function_exists($method)) {
             call_user_func($method, $_REQUEST);
         } else {
             new TMessage('error', "<b>Error</b>: class <b><i><u>{$class}</u></i></b> not found");
         }
     }
     if (!$static) {
         echo TPage::getLoadedCSS();
     }
     echo TPage::getLoadedJS();
     echo $content;
 }
开发者ID:jhonleandres,项目名称:crmbf,代码行数:47,代码来源:TCoreApplication.class.php

示例2: run

 public static function run($debug = FALSE)
 {
     new TSession();
     $lang = TSession::getValue('language') ? TSession::getValue('language') : 'en';
     TAdiantiCoreTranslator::setLanguage($lang);
     TApplicationTranslator::setLanguage($lang);
     if ($_REQUEST) {
         $class = isset($_REQUEST['class']) ? $_REQUEST['class'] : '';
         if (!TSession::getValue('logged') and $class !== 'LoginForm') {
             echo TPage::getLoadedCSS();
             echo TPage::getLoadedJS();
             new TMessage('error', 'Not logged');
             return;
         }
         parent::run($debug);
     }
 }
开发者ID:jfrank1500,项目名称:curso_php,代码行数:17,代码来源:engine.php

示例3: TSession

require_once 'init.php';
$theme = 'frontend';
new TSession();
if (TSession::getValue('logged')) {
    $content = file_get_contents("app/templates/{$theme}/layoutManual.html");
} else {
    $content = file_get_contents("app/templates/{$theme}/login.html");
}
$content = str_replace('{LIBRARIES}', file_get_contents("app/templates/{$theme}/libraries.html"), $content);
$content = str_replace('{class}', isset($_REQUEST['class']) ? $_REQUEST['class'] : '', $content);
$content = str_replace('{template}', $theme, $content);
$content = str_replace('{username}', TSession::getValue('username'), $content);
$content = str_replace('{frontpage}', TSession::getValue('frontpage'), $content);
$content = str_replace('{query_string}', $_SERVER["QUERY_STRING"], $content);
$css = TPage::getLoadedCSS();
$js = TPage::getLoadedJS();
$content = str_replace('{HEAD}', $css . $js, $content);
if (isset($_REQUEST['changeContent'])) {
    $contenToChange = $_REQUEST['changeContent'];
    switch ($contenToChange) {
        case 'clients':
            $insideContent = file_get_contents("app/resources/manual/clients.html");
            break;
        case 'calendar':
            $insideContent = file_get_contents("app/resources/manual/calendar.html");
            break;
        case 'notes':
            $insideContent = file_get_contents("app/resources/manual/notes.html");
            break;
        case 'stock':
            $insideContent = file_get_contents("app/resources/manual/stock.html");
开发者ID:kiibe,项目名称:linkERP,代码行数:31,代码来源:indexManual.php


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