1
0
mirror of https://github.com/e107inc/e107.git synced 2025-02-25 01:02:50 +01:00

23 lines
643 B
PHP
Raw Normal View History

2013-02-21 17:46:12 -08:00
<?php
/*
* e107 website system
*
* Copyright (C) 2008-2013 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*/
if (!defined('e107_INIT')) { exit; }
$caption = "Dashboard";
2013-03-16 14:30:53 -07:00
$text = "This page provides you with an overview of site activity.<br /><br />";
if(e107::getPref('admincss')=='admin_dark.css' && deftrue('BOOTSTRAP') !== 3)
2013-03-16 14:30:53 -07:00
{
2015-07-15 19:33:15 -07:00
$text .= "<small>Theme too dark? <a class='btn btn-default btn-xs btn-mini btn-inverse' href='".e_ADMIN."theme.php?mode=admin'>Change it here</a></small>";
2013-03-16 14:30:53 -07:00
}
e107::getRender()->tablerender($caption, $text);