\n"; echo "\n"; echo "\n"; echo ""; echo "
\n"; // list of tools and descriptions $tools = array(); // profile editor $pEditor = new LAMTool(); $pEditor->name = _("Profile editor"); $pEditor->description = _("Here you can manage your account profiles."); $pEditor->link = "profedit/profilemain.php"; $pEditor->requiresWriteAccess = true; $tools[] = $pEditor; // file upload $fUpload = new LAMTool(); $fUpload->name = _("File upload"); $fUpload->description = _("Creates accounts by uploading a CSV formated file."); $fUpload->link = "masscreate.php"; $fUpload->requiresWriteAccess = true; $tools[] = $fUpload; // OU editor $ouEditor = new LAMTool(); $ouEditor->name = _("OU editor"); $ouEditor->description = _("Manages OU objects in your LDAP tree."); $ouEditor->link = "ou_edit.php"; $ouEditor->requiresWriteAccess = true; $tools[] = $ouEditor; // PDF editor $pdfEditor = new LAMTool(); $pdfEditor->name = _("PDF editor"); $pdfEditor->description = _("This tool allows you to customize the PDF pages."); $pdfEditor->link = "pdfedit/pdfmain.php"; $pdfEditor->requiresWriteAccess = true; $tools[] = $pdfEditor; // schema browser $sBrowser = new LAMTool(); $sBrowser->name = _("Schema browser"); $sBrowser->description = _("Here you can browse LDAP object classes and attributes."); $sBrowser->link = "schema/schema.php"; $tools[] = $sBrowser; // tests $tests = new LAMTool(); $tests->name = _("Tests"); $tests->description = _("Here you can test if certain LAM features work on your installation."); $tests->link = "tests/index.php"; $tests->requiresWriteAccess = true; $tools[] = $tests; echo "\n"; // print tools table echo "
\n"; echo " | "; echo "link . "\" target=\"mainpart\">" . $tools[$i]->name . ""; echo " | \n";
echo "\n"; echo " | "; echo $tools[$i]->description; echo " | \n"; echo "\n"; echo " |