本文整理汇总了PHP中Uri::getAction方法的典型用法代码示例。如果您正苦于以下问题:PHP Uri::getAction方法的具体用法?PHP Uri::getAction怎么用?PHP Uri::getAction使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Uri
的用法示例。
在下文中一共展示了Uri::getAction方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: logout
/**
* Logout User and Send Url for redirect
*/
public function logout()
{
if (isset($_SESSION['gameID']) && $_SESSION['gameID'] != 0) {
include_once 'controller/Gamer.php';
$gamer = new Gamer();
$gamer->EndGame();
}
session_destroy();
return json_encode(array("uri" => Uri::getAction('Login', 'getMain')));
}
示例2: getMain
/**
* Returns Main-Page from the Admin-Section as HTML-View
* @return string
*/
public function getMain()
{
include_once 'classes/person.php';
if (person::getPermissionName() != 'admin') {
$login = Uri::getAction('Login');
header("Location: {$login}");
} else {
require 'classes/view.php';
require './models/admin.php';
$view = new view();
return $view->loadTemplate(new admin_model());
}
}
示例3: getMain
/**
* Return Gamer-Main-Page as HTML-View
*/
public function getMain()
{
if (person::getPermissionName() != 'admin' && person::getPermissionName() != 'gameuser') {
$login = Uri::getAction('Login');
header("Location: {$login}");
} else {
require 'classes/view.php';
$model = new stdClass();
$model->template = 'game/main';
$model->hasFrage = isset($_SESSION['tmpFrage']['id']);
$model->user = $_SESSION['username'];
$model->points = 0;
$model->message = $model->hasFrage ? 'Welcome back' : 'Welcome';
$view = new view();
return $view->loadTemplate($model);
}
}