Example #1
0
function afmng_widget_status($args)
{
    extract($args);
    echo $before_widget;
    echo $before_title . 'Status' . $after_title;
    $ltpl = new LTemplate();
    $ltpl->render(afmng_get_tplfile('tpl.StatusWidget.php'));
    echo $after_widget;
}
Example #2
0
/**
* Render the User Manager Page
*/
function afmng_menu_usermng()
{
    if (afmng_check_post()) {
        afmng_menu_usermng_postback();
    }
    $ltpl = new LTemplate();
    $ltpl->users = afmng_db_get_users();
    $ltpl->caps = afmngdb::$caps;
    //render page
    $ltpl->render(afmng_get_tplfile('tpl.UserMng.php'));
}