當前位置: 首頁>>代碼示例>>PHP>>正文


PHP access::no_user方法代碼示例

本文整理匯總了PHP中access::no_user方法的典型用法代碼示例。如果您正苦於以下問題:PHP access::no_user方法的具體用法?PHP access::no_user怎麽用?PHP access::no_user使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在access的用法示例。


在下文中一共展示了access::no_user方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __construct

 /**
  * Construct
  */
 public function __construct()
 {
     ess::$b->page->add_title("Glemt passord");
     access::no_user();
     ess::$b->page->theme_file = "guest_simple";
     sess_start();
     // behandle forespørsel?
     if (isset($_POST['epost'])) {
         $this->handle();
     }
     // vis siden
     $this->show();
     ess::$b->page->load();
 }
開發者ID:Kuzat,項目名稱:kofradia,代碼行數:17,代碼來源:glemt_passord.php

示例2: define

<?php

define("FORCE_HTTPS", true);
define("ALLOW_GUEST", true);
require "base.php";
global $__server;
ess::$b->page->theme_file = "guest_simple";
// logget inn og har vervelenke?
if (login::$logged_in && isset($_GET['r'])) {
    // finn spilleren og redirect dit om mulig
    if ($player = player::get($_GET['r'])) {
        return $player->redirect_to();
    }
}
access::no_user();
ess::$b->page->add_css('
.registrer_felt {
	background: rgb(30, 30, 30);
	background: rgba(150, 150, 150, 0.05);
	border: 7px solid rgb(25, 25, 25);
	border: 7px solid rgba(31, 31, 31, 0.7);
	width: 300px;
	margin: 1em auto;
	padding: 1px 1em;
}
/*.registrer_felt input.styled {
	background: #111;
	color: #FFF;
	border: 1px solid #1F1F1F;
	padding: 1px;
	font-size: 12px;
開發者ID:Kuzat,項目名稱:kofradia,代碼行數:31,代碼來源:registrer.php


注:本文中的access::no_user方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。