isAdmin()) { UI::contentContainer("
Permission denied.
"); UI::htmlPageEnd(); exit; } function getTime() { if (function_exists('microtime')) { $tm = microtime(); $tm = explode(' ', $tm); return (float) sprintf('%f', $tm[1] + $tm[0]); } return time(); } // ------------------------------------- Suche starten -------------------------------------------- UI::contentContainerStart(); $startTime = getTime(); $results = array(); //searchInFolder($startFolder); // // Construct the SQL query that will be used to search the database. // // Create the keyword search string. This search spans up to three columns // in the database: keywords, name and comment. // // The base query. // $searchQuery = "SELECT `tblDocuments`.* FROM `tblDocuments` "; // Send the search query to the database. $resArr = $db->getResultArray($searchQuery); // Assemble the results into an array of MyDMS Document objects. if (!is_bool($resArr) && count($resArr)>0) { echo ""; printMLText("search_time", array("time" => $searchTime)); UI::contentContainerEnd(); UI::htmlEndPage(); ?>