Please make sure IN_MYBB is defined."); } $plugins->run_hooks("admin_home_index_begin"); if(!$mybb->input['action']) { $plugins->run_hooks("admin_home_index_start"); if($mybb->request_method == "post" && isset($mybb->input['adminnotes'])) { // Update Admin Notes cache $update_cache = array( "adminmessage" => $mybb->input['adminnotes'] ); $cache->update("adminnotes", $update_cache); $plugins->run_hooks("admin_home_index_start_begin"); flash_message($lang->success_notes_updated, 'success'); admin_redirect("index.php"); } $page->add_breadcrumb_item($lang->dashboard); $page->output_header($lang->dashboard); $sub_tabs['dashboard'] = array( 'title' => $lang->dashboard, 'link' => "index.php", 'description' => $lang->dashboard_description ); $page->output_nav_tabs($sub_tabs, 'dashboard'); // Load stats cache $stats = $cache->read("stats"); $serverload = get_server_load(); // Get the number of users $query = $db->simple_select("users", "COUNT(uid) AS numusers"); $users = my_number_format($db->fetch_field($query, "numusers")); // Get the number of users awaiting validation $query = $db->simple_select("users", "COUNT(uid) AS awaitingusers", "usergroup='5'"); $awaitingusers = my_number_format($db->fetch_field($query, "awaitingusers")); // Get the number of new users for today $timecut = TIME_NOW - 86400; $query = $db->simple_select("users", "COUNT(uid) AS newusers", "regdate > '$timecut'"); $newusers = my_number_format($db->fetch_field($query, "newusers")); // Get the number of active users today $query = $db->simple_select("users", "COUNT(uid) AS activeusers", "lastvisit > '$timecut'"); $activeusers = my_number_format($db->fetch_field($query, "activeusers")); // Get the number of threads $threads = my_number_format($stats['numthreads']); // Get the number of unapproved threads $unapproved_threads = my_number_format($stats['numunapprovedthreads']); // Get the number of new threads for today $query = $db->simple_select("threads", "COUNT(*) AS newthreads", "dateline > '$timecut' AND visible='1' AND closed NOT LIKE 'moved|%'"); $newthreads = my_number_format($db->fetch_field($query, "newthreads")); // Get the number of posts $posts = my_number_format($stats['numposts']); // Get the number of unapproved posts if($stats['numunapprovedposts'] < 0) { $status['numunapprovedposts'] = 0; } $unapproved_posts = my_number_format($stats['numunapprovedposts']); // Get the number of new posts for today $query = $db->simple_select("posts", "COUNT(*) AS newposts", "dateline > '$timecut' AND visible='1'"); $newposts = my_number_format($db->fetch_field($query, "newposts")); // Get the number and total file size of attachments $query = $db->simple_select("attachments", "COUNT(*) AS numattachs, SUM(filesize) as spaceused", "visible='1' AND pid > '0'"); $attachs = $db->fetch_array($query); $attachs['spaceused'] = get_friendly_size($attachs['spaceused']); // Get the number of unapproved attachments $query = $db->simple_select("attachments", "COUNT(*) AS numattachs", "visible='0' AND pid > '0'"); $unapproved_attachs = my_number_format($db->fetch_field($query, "numattachs")); // Fetch the last time an update check was run $update_check = $cache->read("update_check"); // If last update check was greater than two weeks ago (14 days) show an alert if(isset($update_check['last_check']) && $update_check['last_check'] <= TIME_NOW-60*60*24*14) { $lang->last_update_check_two_weeks = $lang->sprintf($lang->last_update_check_two_weeks, "index.php?module=home-version_check"); $page->output_error("

{$lang->last_update_check_two_weeks}

"); } // If the update check contains information about a newer version, show an alert if(isset($update_check['latest_version_code']) && $update_check['latest_version_code'] > $mybb->version_code) { $lang->new_version_available = $lang->sprintf($lang->new_version_available, "MyBB {$mybb->version}", "MyBB {$update_check['latest_version']}"); $page->output_error("

{$lang->new_version_available}

"); } $adminmessage = $cache->read("adminnotes"); $table = new Table; $table->construct_header($lang->mybb_server_stats, array("colspan" => 2)); $table->construct_header($lang->forum_stats, array("colspan" => 2)); $table->construct_cell("{$lang->mybb_version}", array('width' => '25%')); $table->construct_cell($mybb->version, array('width' => '25%')); $table->construct_cell("{$lang->threads}", array('width' => '25%')); $table->construct_cell("{$threads} {$lang->threads}
{$newthreads} {$lang->new_today}
{$unapproved_threads} {$lang->unapproved}", array('width' => '25%')); $table->construct_row(); $table->construct_cell("{$lang->php_version}", array('width' => '25%')); $table->construct_cell(PHP_VERSION, array('width' => '25%')); $table->construct_cell("{$lang->posts}", array('width' => '25%')); $table->construct_cell("{$posts} {$lang->posts}
{$newposts} {$lang->new_today}
{$unapproved_posts} {$lang->unapproved}", array('width' => '25%')); $table->construct_row(); $table->construct_cell("{$lang->sql_engine}", array('width' => '25%')); $table->construct_cell($db->short_title." ".$db->get_version(), array('width' => '25%')); $table->construct_cell("{$lang->users}", array('width' => '25%')); $table->construct_cell("{$users} {$lang->registered_users}
{$activeusers} {$lang->active_users}
{$newusers} {$lang->registrations_today}
'5')))."&from=home\">{$awaitingusers} {$lang->awaiting_activation}", array('width' => '25%')); $table->construct_row(); $table->construct_cell("{$lang->server_load}", array('width' => '25%')); $table->construct_cell($serverload, array('width' => '25%')); $table->construct_cell("{$lang->attachments}", array('width' => '25%')); $table->construct_cell("{$attachs['numattachs']} {$lang->attachments}
{$unapproved_attachs} {$lang->unapproved}
{$attachs['spaceused']} {$lang->used}", array('width' => '25%')); $table->construct_row(); $table->output($lang->dashboard); $table->construct_header($lang->admin_notes_public); $form = new Form("index.php", "post"); $table->construct_cell($form->generate_text_area("adminnotes", $adminmessage['adminmessage'], array('style' => 'width: 99%; height: 200px;'))); $table->construct_row(); $table->output($lang->admin_notes); $buttons[] = $form->generate_submit_button($lang->save_notes); $form->output_submit_wrapper($buttons); $form->end(); $page->output_footer(); } ?>