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


PHP Render::add方法代碼示例

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


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

示例1: index

 public function index($args)
 {
     $render = new Render();
     $render->add('path', $args['path']);
     $render->add('fullPath', $args['fullPath']);
     $render->add('args', $args['args']);
     switch (true) {
         case count($args['args']) == 0:
         case $args['args'][0] == 'pages':
         case $args['args'][0] == 'page':
             $render->view('index');
             break;
         default:
             $render->view('404', true, true, "HTTP/1.0 404 Not Found");
             break;
     }
 }
開發者ID:entreoutros,項目名稱:Topo,代碼行數:17,代碼來源:homeController.class.php

示例2: open

 public function open($pagina)
 {
     if ($this->allowCrossDomain) {
         header('Access-Control-Allow-Origin: *');
     }
     if ($this->onlyJson && $_SERVER["HTTP_ACCEPT"] && strpos($_SERVER["HTTP_ACCEPT"], "application/json") === false) {
         return false;
     }
     if ($this->onlyLocal && strpos($_SERVER['HTTP_REFERER'], getenv('HTTP_HOST')) === false) {
         return false;
     }
     $retorno = 200;
     $pagina = substr($pagina, -1) == "/" ? substr($pagina, 0, -1) : $pagina;
     $pedacos = explode("/", $pagina);
     $arg = array();
     $index = $pagina;
     while (count($pedacos) >= 0) {
         if (count($pedacos) == 0 || isset($this->controller[$index]) && in_array($this->controller[$index], $this->controller)) {
             break;
         } else {
             $arg[] = array_pop($pedacos);
             $index = join("/", $pedacos);
         }
     }
     if (count($arg) == 0) {
     }
     $index = $index == "" ? 'index' : $index;
     $args = array('fullPath' => $pagina, 'path' => $index, 'args' => count($arg) > 0 && $arg[0] !== "" ? array_reverse($arg) : array());
     if (!is_null($this->controller[$index]) && $index !== "") {
         if (file_exists($this->controller[$index]['caminho'])) {
             include $this->controller[$index]['caminho'];
             $className = $this->controller[$index]['controle'];
             if (class_exists($className)) {
                 $objController = new $className();
                 // roda a funcao init da classe
                 $action = $this->controller[$index]['action'];
                 $retorno = $objController->run($action, $args);
                 // roda a funcao run
                 //return true;
             } else {
                 $retorno = 404;
                 //echo "Erro ao ativar o controller: ".$className."<br>";
                 //return false;
             }
         } else {
             $retorno = 404;
         }
     } else {
         $retorno = 404;
     }
     if ($retorno) {
         if (Render::templateExists($retorno)) {
             if (is_numeric($retorno)) {
             }
             $render = new Render();
             $render->add('args', $args);
             $render->view($retorno);
             return true;
         } else {
             http_response_code($retorno);
             return false;
         }
     } else {
         return true;
     }
 }
開發者ID:entreoutros,項目名稱:Topo,代碼行數:66,代碼來源:router.class.php


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