本文整理汇总了PHP中Authorization::grant方法的典型用法代码示例。如果您正苦于以下问题:PHP Authorization::grant方法的具体用法?PHP Authorization::grant怎么用?PHP Authorization::grant使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Authorization
的用法示例。
在下文中一共展示了Authorization::grant方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Authorization
background-color:#FFF;
}
</style>
</head>
<body>
<?php
$auth = new Authorization();
//create authorization object
if (isset($_POST['logout'])) {
//user has attempted to log out
$auth->revoke();
} else {
if (isset($_POST['login'])) {
if ($_POST['password'] == $password) {
$auth->grant();
}
}
}
if (!$auth->isAuthorized()) {
echo "<div id='loginBox'>";
echo "<h1>" . PROJECT . " <span style='font-size:14px; color:#000;'>v" . VERSION . "</span></h1>";
echo "<div style='padding:15px;'>";
echo "<form action='" . PAGE . "' method='post'>";
echo "Password: <input type='password' name='password'/>";
echo "<input type='submit' value='Log In' name='login'/>";
echo "</form>";
echo "</div>";
echo "</div>";
} else {
if (sizeof($databases) > 0) {