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


PHP Invitation::getByCode方法代碼示例

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


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

示例1:

	font-weight: bold;
	font-size: 1.5em;
}
</style>

<div id="userbase-authlist">
<h2>Sign up</h2>
<?php 
if (UserConfig::$enableRegistration) {
    $show_registration_form = true;
    $invitation_used = null;
    if (UserConfig::$enableInvitations) {
        $message = UserConfig::$invitationRequiredMessage;
        $show_registration_form = false;
        if (array_key_exists('invite', $_GET)) {
            $invitation = Invitation::getByCode($_GET['invite']);
            if (is_null($invitation) || $invitation->getStatus()) {
                $message = 'Invitation code you entered is not valid';
            } else {
                $invitation_used = $invitation;
                $show_registration_form = true;
            }
        }
        if (!$show_registration_form) {
            ?>
			<style>
			#userbase-invitation-form {
				font: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
				padding: 0.4em 1em;
				margin: 0;
				width: 382px;
開發者ID:russelldavis,項目名稱:UserBase,代碼行數:31,代碼來源:register.php

示例2: dirname

<?php

require_once dirname(dirname(__FILE__)) . '/config.php';
require_once dirname(dirname(__FILE__)) . '/User.php';
$user = User::require_login();
if (!in_array($user->getID(), UserConfig::$admins)) {
    require_once dirname(__FILE__) . '/admin_access_only.php';
    exit;
}
require_once dirname(dirname(__FILE__)) . '/Invitation.php';
if (array_key_exists('save', $_POST)) {
    foreach ($_POST as $key => $value) {
        if (strpos($key, 'code_') === 0 && trim($value) != '') {
            $invitation = Invitation::getByCode(substr($key, 5));
            $invitation->setComment($value);
            $invitation->save();
        }
    }
    header("Location: #message=saved");
    exit;
}
if (array_key_exists('add', $_POST) && is_numeric($_POST['add'])) {
    $howmany = (int) $_POST['add'];
    if ($howmany > 0) {
        Invitation::generate($howmany);
    }
    header("Location: #message=added");
    exit;
}
$_styles = array('http://yui.yahooapis.com/2.7.0/build/button/assets/skins/sam/button.css', 'http://yui.yahooapis.com/2.7.0/build/container/assets/skins/sam/container.css');
$_scripts = array('http://yui.yahooapis.com/2.7.0/build/yahoo-dom-event/yahoo-dom-event.js', 'http://yui.yahooapis.com/2.7.0/build/animation/animation-min.js', 'http://yui.yahooapis.com/2.7.0/build/connection/connection-min.js', 'http://yui.yahooapis.com/2.7.0/build/element/element-min.js', 'http://yui.yahooapis.com/2.7.0/build/button/button-min.js', 'http://yui.yahooapis.com/2.7.0/build/dragdrop/dragdrop-min.js', 'http://yui.yahooapis.com/2.7.0/build/container/container-min.js');
開發者ID:russelldavis,項目名稱:UserBase,代碼行數:31,代碼來源:invitations.php


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