"); exit; } // delete domain(s) if ($_POST['del_domain']){ // search for checkboxes $domains = array_keys($_POST, "on"); $domainstr = implode(";", $domains); echo(""); } exit; } echo $_SESSION['header']; echo "listdomains\n"; echo "\n"; echo "\n"; echo "\n"; // get current page $page = $_GET["page"]; if (!$page) $page = 1; // take maximum count of domain entries shown on one page out of session if ($_SESSION["config"]->get_MaxListEntries() <= 0) $max_pageentrys = 10; // default setting, if not yet set else $max_pageentrys = $_SESSION["config"]->get_MaxListEntries(); // generate attribute and description tables $attr_array; // list of LDAP attributes to show $desc_array; // list of descriptions for the attributes $attr_array[] = "sambaDomainName"; $attr_array[] = "sambaSID"; $attr_array[] = "dn"; $desc_array[] = _("Domain Name"); $desc_array[] = _("Domain SID"); $desc_array[] = "DN"; // check search suffix if ($_POST['dom_suffix']) $dom_suffix = $_POST['dom_suffix']; // new suffix selected via combobox elseif ($_SESSION['dom_suffix']) $dom_suffix = $_SESSION['dom_suffix']; // old suffix from session else $dom_suffix = $_SESSION["config"]->get_DomainSuffix(); // default suffix session_register('dom_suffix'); if (! $_GET['norefresh']) { // configure search filter $filter = "(sambaDomainName=*)"; $attrs = $attr_array; $sr = @ldap_search($_SESSION["ldap"]->server(), $dom_suffix, $filter, $attrs); if ($sr) { $dom_info = ldap_get_entries($_SESSION["ldap"]->server, $sr); ldap_free_result($sr); if ($dom_info["count"] == 0) StatusMessage("WARN", "", _("No Samba Domains found!")); // delete first array entry which is "count" array_shift($dom_info); // sort rows by sort column ($sort) usort($dom_info, "cmp_array"); } else StatusMessage("ERROR", _("LDAP Search failed! Please check your preferences."), _("No Samba Domains found!")); } else { if (sizeof($dom_info) == 0) StatusMessage("WARN", "", _("No Samba Domains found!")); // sort rows by sort column ($sort) if ($dom_info) usort($dom_info, "cmp_array"); } echo ("
\n"); // draw navigation bar if domain accounts were found if (sizeof($dom_info) > 0) { draw_navigation_bar(sizeof($dom_info)); echo ("
\n"); } // print domain table header echo "\n"; echo ""; // table header for ($k = 0; $k < sizeof($desc_array); $k++) { if (strtolower($attr_array[$k]) == $sort) { echo ""; } else echo ""; } echo "\n"; // calculate which rows to show $table_begin = ($page - 1) * $max_pageentrys; if (($page * $max_pageentrys) > sizeof($dom_info)) $table_end = sizeof($dom_info); else $table_end = ($page * $max_pageentrys); // print domain list for ($i = $table_begin; $i < $table_end; $i++) { echo("" . " " . " "); for ($k = 0; $k < sizeof($attr_array); $k++) { echo (""); } echo("\n"); } echo ("
" . $desc_array[$k] . "" . $desc_array[$k] . "
" . _("Edit") . ""); // print all attribute entries seperated by "; " if (sizeof($dom_info[$i][strtolower($attr_array[$k])]) > 0) { // delete first array entry which is "count" if ((! $_GET['norefresh']) && (is_array($dom_info[$i][strtolower($attr_array[$k])]))) array_shift($dom_info[$i][strtolower($attr_array[$k])]); if (is_array($dom_info[$i][strtolower($attr_array[$k])])) echo implode("; ", $dom_info[$i][strtolower($attr_array[$k])]); else echo $dom_info[$i][strtolower($attr_array[$k])]; } echo ("
"); echo ("
"); // draw navigation bar if domain accounts were found if (sizeof($dom_info) > 0) { draw_navigation_bar(sizeof($dom_info)); echo ("
\n"); } if (! $_GET['norefresh']) { // generate list of possible suffixes $dom_units = $_SESSION['ldap']->search_units($_SESSION["config"]->get_DomainSuffix()); } echo ("

\n"); echo ("\n"); if (sizeof($dom_info) > 0) echo ("\n"); // print combobox with possible sub-DNs if (sizeof($dom_units) > 1) { echo ("    " . _("Suffix") . ": "); echo ("\n"); echo (""); } echo ("

\n"); echo ("
\n"); echo "\n"; /** * @brief draws a navigation bar to switch between pages * * * @return void */ function draw_navigation_bar ($count) { global $max_pageentrys; global $page; global $sort; echo ("\n"); echo ("\n"); echo (""); echo (""); echo ("
  "); if ($page != 1) echo ("<=\n"); else echo ("<="); echo (" "); if ($page < ($count / $max_pageentrys)) echo ("=>\n"); else echo ("=>"); echo " " . $count . " " . _("Samba Domain(s) found"); echo (""); for ($i = 0; $i < ($count / $max_pageentrys); $i++) { if ($i == $page - 1) echo (" " . ($i + 1)); else echo (" " . ($i + 1) . "\n"); } echo ("
\n"); } // compare function used for usort-method // rows are sorted with the first attribute entry of the sort column // if objects have attributes with multiple values the others are ignored function cmp_array($a, $b) { // sort specifies the sort column global $sort; global $attr_array; // sort by first attribute with name $sort if (!$sort) $sort = strtolower($attr_array[0]); if ($a[$sort][0] == $b[$sort][0]) return 0; else if ($a[$sort][0] == max($a[$sort][0], $b[$sort][0])) return 1; else return -1; } ?>