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


PHP Page::redirect方法代码示例

本文整理汇总了PHP中Page::redirect方法的典型用法代码示例。如果您正苦于以下问题:PHP Page::redirect方法的具体用法?PHP Page::redirect怎么用?PHP Page::redirect使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Page的用法示例。


在下文中一共展示了Page::redirect方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: login

 public function login()
 {
     RoutingEngine::setPage("runnDAILY Login", "PV__400");
     if (RoutingEngine::getInstance()->requirePermission("PV__300")) {
         Notification::add("You are already logged in.");
         Page::redirect("/");
     }
 }
开发者ID:byronwall,项目名称:runnDAILY,代码行数:8,代码来源:home.php

示例2: action_delete

 public function action_delete()
 {
     RoutingEngine::setPage("runnDAILY", "PV__300");
     if (!isset($_POST["go_id"])) {
         Page::redirect("/goals");
     }
     Goal::deleteGoal($_POST["go_id"]);
     Page::redirect("/goals");
 }
开发者ID:byronwall,项目名称:runnDAILY,代码行数:9,代码来源:goals.php

示例3: action_elevation_add_packed

 public function action_elevation_add_packed()
 {
     if ($_FILES["packed_hdr"]) {
         move_uploaded_file($_FILES["packed_hdr"]["tmp_name"], SYSTEM_ROOT . "/elev_packed.hdr");
     }
     if ($_FILES["packed_flt"]) {
         move_uploaded_file($_FILES["packed_flt"]["tmp_name"], SYSTEM_ROOT . "/elev_packed.flt");
     }
     $region = array_safe($_POST, "region_name", "Elevation data");
     Elevation::addElevationToDatabase(SYSTEM_ROOT . "/elev_packed", 1, $region);
     unlink(SYSTEM_ROOT . "/elev_packed.hdr");
     unlink(SYSTEM_ROOT . "/elev_packed.flt");
     Notification::add("Elevation data has been added");
     Page::redirect("/admin/elevation");
 }
开发者ID:byronwall,项目名称:runnDAILY,代码行数:15,代码来源:admin.php

示例4: delete

 function delete()
 {
     //check permissions
     if (!isset($_POST["e_eid"])) {
         Notification::add("Could not delete the event.");
         Page::redirect("/events");
     }
     $event = new Event($_POST);
     if ($event->delete()) {
         Notification::add("Event was deleted.");
         Page::redirect("/events");
     }
     Notification::add("Error deleting.");
     Page::redirect("/events");
 }
开发者ID:byronwall,项目名称:runnDAILY,代码行数:15,代码来源:events.php

示例5: action_create

 public function action_create()
 {
     $group = new Group($_POST);
     if ($group->createGroup()) {
         if (isset($_FILES['img_up'])) {
             $updir = PUBLIC_ROOT . "/img/group/";
             $path_part = pathinfo($_FILES['img_up']['name']);
             $upfile = $group->gid % 100 . "/" . $group->gid . "." . $path_part["extension"];
             if (move_uploaded_file($_FILES['img_up']['tmp_name'], $updir . $upfile)) {
                 if ($group->updateImage($upfile)) {
                     Page::redirect("/group/view?gid=" . $group->gid);
                 }
             }
         }
     }
 }
开发者ID:byronwall,项目名称:runnDAILY,代码行数:16,代码来源:group.php

示例6: view_user

 public function view_user()
 {
     RoutingEngine::setPage("runnDAILY", "PV__300");
     RoutingEngine::getInstance()->registerParams("uid");
     if (!isset($_GET["uid"])) {
         Page::redirect("/community");
     }
     $uid = $_GET["uid"];
     //$routes = Route::getRoutesForUserInArray($uid, 50);
     $routes = Route::sql()->select("r_id, r_name, r_distance, r_creation, r_description")->where_eq("r_uid", $uid)->orderby("r_creation")->limit(50)->execute(false, true, "r_id");
     //$routes_js = json_encode_null($routes);
     RoutingEngine::getSmarty()->assign("routes", $routes);
     //RoutingEngine::getSmarty()->assign("routes_js", $routes_js);
     //$index_items = TrainingLog::getIndexItemsForUser($uid);
     $index_items = TrainingLog::sql()->select("r_name, t_rid, t_tid, t_time, t_distance, t_pace, t_date, t_comment")->leftjoin("routes", "r_id", "t_rid", false)->where_eq("t_uid", $uid)->orderby("t_date")->orderby("t_distance")->limit(50)->execute(false, true);
     //$json_data = TrainingLog::buildChartData($index_items);
     RoutingEngine::getSmarty()->assign("training_index_items", $index_items);
     //RoutingEngine::getSmarty()->assign("JSON_Chart_Data", $json_data);
     //var_dump(User::$current_user);
     RoutingEngine::getSmarty()->assign("user", User::fromUid($uid));
 }
开发者ID:byronwall,项目名称:runnDAILY,代码行数:21,代码来源:community.php

示例7: redirect

 protected function redirect()
 {
     Page::redirect('/');
 }
开发者ID:uglybob,项目名称:bh.net,代码行数:4,代码来源:UserForm.php

示例8: actionDelete

 public function actionDelete()
 {
     RoutingEngine::setPage("Messages | runnDAILY", "PV__300");
     if (!isset($_POST["msg_convo_id"])) {
         Page::redirect("/messages");
     }
     $message = new Message($_POST);
     $read_count = Message::markConvoRead($message->convo_id);
     if ($read_count > 0) {
         Message::updateCount(User::$current_user->uid, -$read_count);
         User::$current_user->msg_new -= $read_count;
         RoutingEngine::getInstance()->persistUserData();
     }
     $message->delete();
     Page::redirect("/messages");
 }
开发者ID:byronwall,项目名称:runnDAILY,代码行数:16,代码来源:messages.php

示例9: checkPermissions

 public function checkPermissions($min_perm, $redirect = true)
 {
     if (isset($this->type) && $this->type > $min_perm) {
         if (!$redirect) {
             return false;
         }
         $_SESSION["login_redirect"] = $_SERVER["REQUEST_URI"];
         Page::redirect("/login");
     }
     return true;
 }
开发者ID:byronwall,项目名称:runnDAILY,代码行数:11,代码来源:user.php

示例10: action_copy_view

 public function action_copy_view()
 {
     RoutingEngine::setPage("runnDAILY Routes", "PV__300");
     $route = new Route($_POST);
     if ($route->copy()) {
         Notification::add("Your route - {$route->name} - was copied.");
         Page::redirect("/routes/view/{$route->id}");
     }
     Notification::add("There was an error copying the route.  Try again.");
     Page::redirect("/routes/view/{$route->id}");
 }
开发者ID:byronwall,项目名称:runnDAILY,代码行数:11,代码来源:routes.php

示例11: Page

<?php

$page = new Page("Log In");
if (isset($_POST["submit"])) {
    $email = $_POST["email"];
    $password = $_POST["password"];
    $Session->remove("error");
    if ($SessionPerson->login($email, $password)) {
        $page->changeQuery("page", LANDING_PAGE);
        $page->redirect();
        exit;
    } else {
        $Session->add("error", "Incorrect Username or password.");
        $page->redirect($page->currentURL());
    }
} else {
    $page->showHeader();
    ?>
		<div>
			<?php 
    echo $Session->get("error");
    ?>
		</div>

		<form class="form-horizontal" role="form" method="post" action="<?php 
    echo $page->currentURL();
    ?>
">

			<div class="form-group">
			</div>
开发者ID:patrickbraud,项目名称:CapstoneProject,代码行数:31,代码来源:login.php

示例12: edit

 function edit()
 {
     RoutingEngine::setPage("runnDAILY Edit Training Entry", "PV__300");
     if (!isset($_GET["tid"])) {
         Notification::add("That training entry does not exist.");
         Page::redirect("/training");
     }
     $tid = $_GET["tid"];
     $training = TrainingLog::getItem($tid);
     if ($training->uid != User::$current_user->uid) {
         Notification::add("You are not allowed to edit that entry");
         Page::redirect("/training");
     }
     $stmt = Database::getDB()->prepare("\r\n\t\t\tSELECT t_type_id, t_type_name\r\n\t\t\tFROM training_types\r\n\t\t");
     $stmt->execute();
     $stmt->store_result();
     $types = array();
     while ($row = $stmt->fetch_assoc()) {
         $types[$row["t_type_id"]] = $row["t_type_name"];
     }
     $stmt->close();
     RoutingEngine::getSmarty()->assign("t_types", $types);
     RoutingEngine::getSmarty()->assign("t_item", $training);
     RoutingEngine::getSmarty()->display("training/edit.tpl");
     exit;
 }
开发者ID:byronwall,项目名称:runnDAILY,代码行数:26,代码来源:training.php

示例13: showNewPostForm

    static function showNewPostForm($data = null, $error = null)
    {
        $user = Session::getUser();
        require_once 'manager/AuthorizationManager.php';
        if (!isset($_GET["type"])) {
            $_GET["type"] = Post::NEWS;
        }
        if (!AuthorizationManager::canUserDo(AuthorizationManager::CREATE, $_GET["type"])) {
            return;
        }
        //TODO redirect verso pagina di errore.
        $logger = Logger::getLogger();
        $logger->debug("ResourceDao", $_GET["type"]);
        if (isset($_GET["phase"]) && $_GET["phase"] == 3) {
            if ($_GET["type"] == "photoreportage" && isset($_POST["numResources"])) {
                $data = array();
                for ($i = 0; $i < $_POST["numResources"]; $i++) {
                    $resourceID = $_POST["resourceID" . $i];
                    if (isset($_POST[$resourceID]) && $_POST[$resourceID] != '') {
                        //$_POST[$resourceID] is the description
                        $data['description'] = $_POST[$resourceID];
                        $rsUpdated = ResourceManager::editResource($resourceID, $data);
                    }
                }
                Page::redirect("Edit");
            }
        } else {
            if (is_null($error) && count($_POST) > 0) {
                $data = array();
                if (isset($_POST["title"]) && trim($_POST["title"]) != "") {
                    $data["title"] = $_POST["title"];
                } else {
                    $error = array("Inserire un titolo.");
                }
                if (isset($_POST["type"])) {
                    $data["type"] = $_POST["type"];
                } else {
                    $error[] = "Scegliere il tipo di post da pubblicare.";
                }
                if ($data["type"] == "news") {
                    //carico il testo del post
                    if (isset($_POST["content"]) && trim($_POST["content"]) != "") {
                        $data["content"] = $_POST["content"];
                    } else {
                        $error[] = "Inserire un contenuto.";
                    }
                    //check if ther's not valid files
                    $notvalid = 0;
                    if (trim($_FILES["upfile"]["name"]) != "") {
                        if ($_FILES["upfile"]["type"] == "image/gif" || $_FILES["upfile"]["type"] == "image/jpeg" || $_FILES["upfile"]["type"] == "image/png") {
                        } else {
                            $notvalid++;
                        }
                    }
                    if ($notvalid == 0) {
                        if (trim($_FILES["upfile"]["name"]) != "") {
                            if ($_FILES["upfile"]["type"] == "image/gif" || $_FILES["upfile"]["type"] == "image/jpeg" || $_FILES["upfile"]["type"] == "image/png") {
                                $fname = ResourceManager::editFileName($_FILES["upfile"]["name"]);
                                $newsPhoto = ResourceManager::uploadPhoto($fname, $user->getNickname(), $user->getID(), $_FILES["upfile"]["tmp_name"], $_FILES["upfile"]["type"]);
                                //prelevo l'id della risorsa appena salvata
                                $data["photo"] = $newsPhoto->getID();
                            }
                        }
                    } else {
                        $error[] = "Devi inserire un formato valido: .jpeg .jpg .gif oppure .png";
                    }
                } else {
                    if ($data["type"] == "photoreportage") {
                        $photo = array();
                        //check if ther's not valid files
                        for ($i = 0, $notvalid = 0; $i < 10; $i++) {
                            if (trim($_FILES["upfile{$i}"]["name"]) != "") {
                                if ($_FILES["upfile{$i}"]["type"] == "image/gif" || $_FILES["upfile{$i}"]["type"] == "image/jpeg" || $_FILES["upfile{$i}"]["type"] == "image/png") {
                                } else {
                                    $notvalid++;
                                }
                            }
                        }
                        if ($notvalid == 0) {
                            for ($i = 0, $numphoto = 0; $i < 10; $i++) {
                                if (trim($_FILES["upfile{$i}"]["name"]) != "") {
                                    if ($_FILES["upfile{$i}"]["type"] == "image/gif" || $_FILES["upfile{$i}"]["type"] == "image/jpeg" || $_FILES["upfile{$i}"]["type"] == "image/png") {
                                        $fname = ResourceManager::editFileName($_FILES["upfile{$i}"]["name"]);
                                        $photo[] = ResourceManager::uploadPhoto($fname, $user->getNickname(), $user->getID(), $_FILES["upfile{$i}"]["tmp_name"], $_FILES["upfile{$i}"]["type"]);
                                        $numphoto++;
                                    }
                                }
                            }
                            if ($numphoto > 0) {
                                $data["content"] = $photo;
                            } else {
                                $error[] = "Devi inserire almeno un'immagine";
                            }
                        } else {
                            $error[] = "Devi inserire un formato valido: .jpeg .jpg .gif oppure .png";
                        }
                    } else {
                        if ($data["type"] == "videoreportage") {
                            if (isset($_POST["userUrl"]) && $_POST["userUrl"] != '') {
                                $rs = ResourceManager::createResource($user->getID(), youtubeManager::getVideoID($_POST["userUrl"]), 'video');
//.........这里部分代码省略.........
开发者ID:Esisto,项目名称:IoEsisto,代码行数:101,代码来源:PostPage.php

示例14: action_settings

 public function action_settings()
 {
     RoutingEngine::setPage("runnDAILY User Settings", "PV__300");
     User::$current_user->refreshDetails($_POST);
     if (isset($_POST["u_password"])) {
         User::$current_user->password = md5(User::$current_user->password);
     }
     if (User::$current_user->updateUserDetails() || User::$current_user->saveAllSettings()) {
         Notification::add("Your settings have been updated.");
     } else {
         Notification::add("There was an error.  Please try again.");
     }
     Page::redirect("/settings");
 }
开发者ID:byronwall,项目名称:runnDAILY,代码行数:14,代码来源:user.php

示例15: redirect

 protected function redirect()
 {
     Page::redirect('/list/' . lcfirst($this->class));
 }
开发者ID:uglybob,项目名称:bh.net,代码行数:4,代码来源:EditForm.php


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