42 lines
1.2 KiB
PHP
42 lines
1.2 KiB
PHP
<?php
|
|
/* ===========================
|
|
|
|
gelato CMS - A PHP based tumblelog CMS
|
|
development version
|
|
http://www.gelatocms.com/
|
|
|
|
gelato CMS is a free software licensed under the GPL 2.0
|
|
Copyright (C) 2007 by Pedro Santana <pecesama at gmail dot com>
|
|
|
|
=========================== */
|
|
?>
|
|
<?php
|
|
require_once('../config.php');
|
|
include("../classes/user.class.php");
|
|
$user = new user();
|
|
if ($user->isAdmin()) {
|
|
if ($_GET["action"]) {
|
|
|
|
if ($_GET["action"] == "close") {
|
|
session_start();
|
|
if ($user->closeSession()) {
|
|
echo __(" ending session...");
|
|
} else {
|
|
echo __(" failure ending session...");
|
|
}
|
|
} // $_GET["action"] == "close"
|
|
|
|
if ($_GET["action"] == "verify") {
|
|
if ($_GET["login"]=="") {
|
|
echo "<div class=\"error\">".__("Required field cannot be left blank.")."</div>";
|
|
} else {
|
|
if (!$user->userExist($_GET["login"])) {
|
|
echo "<div class=\"exito\">".__("Username available.")."</div>";
|
|
} else {
|
|
echo "<div class=\"error\">".__("The username is not available.")."</div>";
|
|
}
|
|
}
|
|
} // $_GET["action"] == "verify"
|
|
} // $_GET["action"]
|
|
} // $user->isAdmin()
|
|
?>
|