本文整理汇总了PHP中Loader::loadView方法的典型用法代码示例。如果您正苦于以下问题:PHP Loader::loadView方法的具体用法?PHP Loader::loadView怎么用?PHP Loader::loadView使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Loader
的用法示例。
在下文中一共展示了Loader::loadView方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: home
function home()
{
if (isset($_SESSION['name'])) {
$template['lng'] = Cookie::get("lng");
Loader::loadView("test", "", false, $template);
} else {
header("Location:index");
}
}
示例2: index
public function index()
{
Loader::loadModel($this, "registracija", "registracija");
if (isset($_POST['name'])) {
$this->models['registracija']->insert($_POST['name'], $_POST['email'], $_POST['password']);
echo 'uspseno';
}
Loader::loadView('registracija', [], 'registracija');
}
示例3: index
/**
*
*/
public function index()
{
if (!($lng = Cookie::get("lng"))) {
Session::set("lng", "rs");
Cookie::set("lng", "rs", "10", "/");
} else {
$lng = Cookie::get("lng");
Session::set("lng", $lng);
}
$template['lng'] = Session::get("lng");
Loader::loadView("login", "login", true, $template);
}
示例4: loadView
protected function loadView($view)
{
$file = $this->viewPrefix . $view;
$this->viewData['messageHelper'] = $this->messageHelper;
Loader::loadView($file, $this->viewData);
}
示例5: insert
/**
*
*/
public function insert()
{
$template['lng'] = Cookie::get("lng");
Loader::loadView("insert", "users", false, $template);
}