本文整理汇总了PHP中SessionController::getUsername方法的典型用法代码示例。如果您正苦于以下问题:PHP SessionController::getUsername方法的具体用法?PHP SessionController::getUsername怎么用?PHP SessionController::getUsername使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SessionController
的用法示例。
在下文中一共展示了SessionController::getUsername方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: ThemeService
include_once 'SessionController.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/casarover/application/common/common_tools.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/casarover/application/services/ThemeService.php';
/**
*
* @author Ye_WD
* @2016-1-27
*/
$action = $_GET['action'];
$service = new ThemeService();
$id = $_GET['id'];
if (!$id) {
$id = $_POST['id'];
}
if ($action == 'edit') {
$sc = new SessionController();
$theme_items = array();
$area_ids = array();
$service->addOrUpdate($_POST['name'], $_POST['description'], $_POST['filepath'], $sc->getUsername(), $theme_items, $area_ids, $id);
header("Location:../../website/backstage/success.php?info=添加或更新主题成功!&type=theme");
} else {
if ($action == 'recycle') {
$service->recycleTheme($id);
header("Location:../../website/backstage/theme_list.php");
} else {
if ($action == 'recover') {
$service->recoverTheme($id);
header("Location:../../website/backstage/theme_list.php?deleted=1");
}
}
}