Ejemplo n.º 1
0
function admin($message = '')
{
    global $myprivs, $txp_user;
    pagetop(gTxt('site_administration'), $message);
    $themail = fetch('email', 'txp_users', 'name', $txp_user);
    echo new_pass_form();
    echo change_email_form($themail);
    echo author_list();
    echo $myprivs == 1 ? new_author_form() : '';
}
Ejemplo n.º 2
0
function admin($message = '')
{
    global $txp_user;
    pagetop(gTxt('site_administration'), $message);
    if (!is_callable('mail')) {
        echo tag(gTxt('warn_mail_unavailable'), 'p', ' id="warning" ');
    }
    $email = fetch('email', 'txp_users', 'name', $txp_user);
    echo new_pass_form() . change_email_form($email);
    if (has_privs('admin.list')) {
        echo author_list();
    }
    if (has_privs('admin.edit')) {
        echo new_author_form() . reset_author_pass_form();
    }
}
Ejemplo n.º 3
0
function admin($message = '')
{
    global $txp_user;
    pagetop(gTxt('site_administration'), $message);
    $themail = fetch('email', 'txp_users', 'name', $txp_user);
    echo new_pass_form();
    echo change_email_form($themail);
    if (has_privs('admin.list')) {
        echo author_list();
    }
    if (has_privs('admin.edit')) {
        echo new_author_form();
    }
    if (has_privs('admin.edit')) {
        echo reset_author_pass_form();
    }
}