本文整理匯總了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");
}
示例2: index
public function index()
{
View::set("title", "Login");
View::render("login");
}
示例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);
}
示例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");
}
}