本文整理汇总了PHP中Acl::invites方法的典型用法代码示例。如果您正苦于以下问题:PHP Acl::invites方法的具体用法?PHP Acl::invites怎么用?PHP Acl::invites使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Acl
的用法示例。
在下文中一共展示了Acl::invites方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _t
<?php
}
?>
<tr class="row"><td class="tblhead"><?php
echo _t("Invites");
?>
<br />
<a href="<?php
echo page("profile", "invites");
?>
">[<?php
echo _t("My invites");
?>
]</a>
</td><td align="left"><?php
echo $acl->invites();
?>
</td></tr>
<tr class="row"><td class="tblhead"><?php
echo _t("Torrents");
?>
</td><td align="left"><a style="cursor: pointer;" class="show" rel="#seeding"><?php
echo _t("Seeding") . " " . $acl->seeding();
?>
</a> / <a style="cursor: pointer;" class="show" rel="#leeching"><?php
echo _t("Leeching") . " " . $acl->leeching();
?>
</a></td></tr>
</table>
</div>
示例2: _t
<h4><?php
echo _t("Send invite");
?>
</h4>
<?php
try {
$acl = new Acl(USER_ID);
$wpref = new Pref("website");
if ($acl->invites() == 0) {
throw new Exception("Not enough invites available");
}
if (isset($_POST['send'])) {
try {
if ($_POST['secure_input'] != $_SESSION['secure_token']) {
throw new Exception("Wrong secured token");
}
if (empty($_POST['email'])) {
throw new Exception("missing email");
}
if (!filter_var($_POST['email'], FILTER_VALIDATE_EMAIL)) {
throw new Exception("Invalid email address");
}
$db = new DB("users");
$db->select("user_email = '" . $db->escape($_POST['email']) . "'");
if ($db->numRows()) {
throw new Exception("Email already exist");
}
$passkey = md5(uniqid(true));
$id = uniqid(true);
$username = uniqid(true);
$email = $_POST['email'];