. // Adds a row to a table function add_table_row (HTMLTag $table, HTMLTag $child) { // Create table row and column $tr = new HTMLTag ('tr'); $td = new HTMLTag ('td'); // Append child element to column $td->appendChild ($child); // Append column to row $tr->appendChild ($td); // Append row to table $table->appendChild ($tr); } try { // View setup require (realpath ('../view-setup.php')); // Get current website $current_website = $hashover->setup->website; // Attempt to get website from GET data $website = $hashover->setup->getRequest ('website', $current_website); // Set website if GET website is different if ($website !== $current_website) { $hashover->setup->setWebsite ($website); } // Attempt to get array of comment threads $threads = $hashover->thread->queryThreads (); // Create comment thread table $threads_table = new HTMLTag ('table', array ( 'id' => 'threads', 'class' => 'striped-rows-odd', 'cellspacing' => '0', 'cellpadding' => '8' )); // Add first row as header if multiple website support is enabled if ($hashover->setup->supportsMultisites === true) { add_table_row ($threads_table, new HTMLTag ('b', $website, false)); } // Run through comment threads foreach ($threads as $thread) { // Read and parse JSON metadata file $data = $hashover->thread->data->readMeta ('page-info', $thread); // Check if metadata was read successfully if ($data === false or empty ($data['url']) or empty ($data['title'])) { continue; } // Create row div $div = new HTMLTag ('div'); // Add thread hyperlink to row div $div->appendChild (new HTMLTag ('a', array ( 'href' => 'threads.php?' . implode ('&', array ( 'website=' . urlencode ($website), 'thread=' . urlencode ($thread), 'title=' . urlencode ($data['title']), 'url=' . urlencode ($data['url']) )), 'innerHTML' => $data['title'] ))); // Add thread URL line to row div $div->appendChild (new HTMLTag ('p', array ( 'children' => array (new HTMLTag ('small', $data['url'], false)) ))); // And row div to table add_table_row ($threads_table, $div); } // Template data $template = array ( 'title' => $hashover->locale->text['moderation'], 'logout' => $logout->asHTML ("\t\t\t"), 'sub-title' => $hashover->locale->text['moderation-sub'], 'left-id' => 'threads-column', 'threads' => $threads_table->asHTML ("\t\t\t\t\t"), ); // Check if multiple website support is enabled if ($hashover->setup->supportsMultisites === true) { // If so, attempt to get array of websites $websites = $hashover->thread->queryWebsites (); // Check if other websites exist if (count ($websites) > 1) { // If so, create comment thread table $websites_table = new HTMLTag ('table', array ( 'id' => 'websites', 'class' => 'striped-rows-odd', 'cellspacing' => '0', 'cellpadding' => '8' )); // Add first row as header add_table_row ($websites_table, new HTMLTag ('b', array ( 'innerHTML' => $hashover->locale->text['website'][1], ), false)); // Sort the websites sort ($websites, SORT_NATURAL); // Run through website directories foreach ($websites as $name) { // Skip current website if ($name === $website) { continue; } // Create website hyperlink add_table_row ($websites_table, new HTMLTag ('a', array ( 'href' => '?website=' . urlencode ($name), 'innerHTML' => $name ))); } // And add other websites to template $template = array_merge ($template, array ( 'right-id' => 'websites-column', 'websites' => $websites_table->asHTML ("\t\t\t\t\t") )); } } // Load and parse HTML template echo $hashover->templater->parseTemplate ('moderation.html', $template); } catch (\Exception $error) { echo Misc::displayError ($error->getMessage ()); }