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


PHP View::set方法代碼示例

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


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

示例1: admin

 public function admin($name)
 {
     $users = Users::getAll();
     View::set("users", $users);
     View::set("title", "Custom MVC");
     View::render("admin");
 }
開發者ID:archibinario,項目名稱:mvc-php,代碼行數:7,代碼來源:Home.php

示例2: index

 public function index()
 {
     View::set("title", "Login");
     View::render("login");
 }
開發者ID:vmendieta,項目名稱:PFinal-WebUCA2015,代碼行數:5,代碼來源:Login.php

示例3: set

 /**
  * Alias for set variable to view
  * 
  * @param string $name
  * @param mixed $value
  */
 protected final function set($name, $value)
 {
     $this->view->set($name, $value);
 }
開發者ID:stefanak-michal,項目名稱:DragonMVC,代碼行數:10,代碼來源:App.php

示例4: addingreso

 public function addingreso()
 {
     $id_documento = $_POST["id_documento"];
     $registro = $_POST["registro"];
     $anio = $_POST["anio"];
     $pagina = $_POST["pagina"];
     $documento = Documentos::addIngresoDoc($id_documento, $registro, $anio, $pagina);
     if ($documento) {
         View::set("mensaje", "<div id=\"mensaje-de-exito\" class=\"alert alert-success\" role=\"alert\" >\n        \t\t\t\t<strong>Logrado!!</strong> Se ha guardado con exito.\n      \t\t  \t\t </div>");
         $users = Users::getAll();
         $docs = Documentos::getAll();
         //$invs = Investigadores::getAll();
         View::set("users", $users["usuarios"]);
         View::set("docs", $docs["documentos"]);
         //View::set("invs", $invs["investigador"]);
         View::render("ingreso");
     } else {
         View::set("mensaje", "<div id=\"mensaje-de-error\"  class=\"alert alert-danger\" role=\"alert\">\n                        <strong>Error!</strong> Se ha producido un error. Vuelva a intentarlo. Asegurece de completar todos los campos.\n    \t\t\t\t   Y que el registro no exista.\n                     </div>");
         $users = Users::getAll();
         $docs = Documentos::getAll();
         //$invs = Investigadores::getAll();
         View::set("users", $users["usuarios"]);
         View::set("docs", $docs["documentos"]);
         //View::set("invs", $invs["investigador"]);
         View::render("ingreso");
     }
 }
開發者ID:vmendieta,項目名稱:PFinal-WebUCA2015,代碼行數:27,代碼來源:Home.php


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