当前位置: 首页>>代码示例>>PHP>>正文


PHP SessionController::getUsername方法代码示例

本文整理汇总了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");
        }
    }
}
开发者ID:dreamingodd,项目名称:casarover,代码行数:31,代码来源:theme_action.php


注:本文中的SessionController::getUsername方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。