예제 #1
0
function EditLdapUser()
{
    $ldap = new clladp();
    $hash = $ldap->ReadDNInfos($_GET["EditLdapUser"]);
    $pages = new HtmlPages();
    $tpl = new templates();
    echo DIV_SHADOW($pages->PageUser($hash), 'windows');
}
예제 #2
0
function PopUpPostFixInterfaces()
{
    $pages = new HtmlPages();
    $content = $pages->PagePostfix_maincf_LocalNetwork();
    $html = "<div id='rightInfos'>{$content}</div>";
    echo DIV_SHADOW($html, 'windows');
}
예제 #3
0
function TreeOuLoadPageFindUser()
{
    $pages = new HtmlPages();
    echo $pages->PageOuFindUser($_GET["TreeOuLoadPageFindUser"], $_GET["TreeOuFindUser"]);
}
예제 #4
0
function artica_ldap_settings()
{
    $pages = new HtmlPages();
    echo $pages->PageRootArticaLdapSettings();
}
예제 #5
0
function GroupPrivileges($gid)
{
    $tabs = GroupTabs($gid);
    $p = new HtmlPages();
    $pg = $p->PageGroupPrivileges($gid);
    $html = "\n\n\t\n\t<table style='margin:0px;padding:0px;border:0px;margin-top:5px'>\n\t<tr>\n\t<td valign='top' width=1%>\n\t{$tabs}\n\t</td>\n\t<td valign='top'>\n\t{$pg}</td>\n\t</tr>\n\t</table>\n\t\n\t\t";
    $tpl = new templates();
    echo DIV_SHADOW($tpl->_parse_body($html), 'windows');
}