Zeile 6 | Zeile 6 |
---|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* $Id: class_page.php 5016 2010-06-12 00:24:02Z RyanGordon $
| * $Id$
|
*/
/*
| */
/*
|
Zeile 119 | Zeile 119 |
---|
echo "<body>\n"; echo "<div id=\"container\">\n"; echo " <div id=\"logo\"><h1><span class=\"invisible\">{$lang->mybb_admin_cp}</span></h1></div>\n";
|
echo "<body>\n"; echo "<div id=\"container\">\n"; echo " <div id=\"logo\"><h1><span class=\"invisible\">{$lang->mybb_admin_cp}</span></h1></div>\n";
|
echo " <div id=\"welcome\"><span class=\"logged_in_as\">{$lang->logged_in_as} <a href=\"index.php?module=user-users&action=edit&uid={$mybb->user['uid']}\" class=\"username\">{$mybb->user['username']}</a></span> | <a href=\"{$mybb->settings['bburl']}\" target=\"_blank\" class=\"forum\">{$lang->view_board}</a> | <a href=\"index.php?action=logout\" class=\"logout\">{$lang->logout}</a></div>\n";
| echo " <div id=\"welcome\"><span class=\"logged_in_as\">{$lang->logged_in_as} <a href=\"index.php?module=user-users&action=edit&uid={$mybb->user['uid']}\" class=\"username\">{$mybb->user['username']}</a></span> | <a href=\"{$mybb->settings['bburl']}\" target=\"_blank\" class=\"forum\">{$lang->view_board}</a> | <a href=\"index.php?action=logout&my_post_key={$mybb->post_code}\" class=\"logout\">{$lang->logout}</a></div>\n";
|
echo $this->_build_menu(); echo " <div id=\"page\">\n"; echo " <div id=\"left_menu\">\n";
| echo $this->_build_menu(); echo " <div id=\"page\">\n"; echo " <div id=\"left_menu\">\n";
|
Zeile 131 | Zeile 131 |
---|
echo $this->_generate_breadcrumb(); echo " </div>\n"; echo " <div id=\"inner\">\n";
|
echo $this->_generate_breadcrumb(); echo " </div>\n"; echo " <div id=\"inner\">\n";
|
if($admin_session['data']['flash_message'])
| if(isset($admin_session['data']['flash_message']) && $admin_session['data']['flash_message'])
|
{ $message = $admin_session['data']['flash_message']['message']; $type = $admin_session['data']['flash_message']['type'];
| { $message = $admin_session['data']['flash_message']['message']; $type = $admin_session['data']['flash_message']['type'];
|
Zeile 220 | Zeile 220 |
---|
} } return $trail;
|
} } return $trail;
|
} /** * Output an introductory message. * * @param string The title of the introductory message. * @param string The introductory message. * @param string An additional class name to add to the message if there is one. */ function output_intro($title, $description, $class="") { echo " <div class=\"intro_description\">\n"; echo " <div class=\"{$class}\">\n"; echo " <h2>{$title}</h2>\n"; echo " <p>{$description}</p>\n"; echo "</div>\n"; echo "</div>\n";
| |
} /**
| } /**
|
Zeile 319 | Zeile 302 |
---|
*/ function show_login($message="", $class="success") {
|
*/ function show_login($message="", $class="success") {
|
global $lang, $cp_style;
| global $lang, $cp_style, $mybb;
|
$copy_year = COPY_YEAR;
| $copy_year = COPY_YEAR;
|
Zeile 370 | Zeile 353 |
---|
if($_SERVER['QUERY_STRING']) { $query_string = '?'.preg_replace('#adminsid=(.{32})#i', '', $_SERVER['QUERY_STRING']);
|
if($_SERVER['QUERY_STRING']) { $query_string = '?'.preg_replace('#adminsid=(.{32})#i', '', $_SERVER['QUERY_STRING']);
|
| $query_string = preg_replace('#my_post_key=(.{32})#i', '', $query_string);
|
$query_string = str_replace('action=logout', '', $query_string); $query_string = preg_replace('#&+#', '&', $query_string); $query_string = str_replace('?&', '?', $query_string); $query_string = htmlspecialchars_uni($query_string);
|
$query_string = str_replace('action=logout', '', $query_string); $query_string = preg_replace('#&+#', '&', $query_string); $query_string = str_replace('?&', '?', $query_string); $query_string = htmlspecialchars_uni($query_string);
|
| } switch($mybb->settings['username_method']) { case 0: $lang_username = $lang->username; break; case 1: $lang_username = $lang->username1; break; case 2: $lang_username = $lang->username2; break; default: $lang_username = $lang->username; break;
|
} // TODO: Better Fix?
| } // TODO: Better Fix?
|
Zeile 383 | Zeile 382 |
---|
<form method="post" action="{$_SERVER['PHP_SELF']}{$query_string}"> <div class="form_container">
|
<form method="post" action="{$_SERVER['PHP_SELF']}{$query_string}"> <div class="form_container">
|
<div class="label"{$login_label_width}><label for="username">{$lang->username}</label></div>
| <div class="label"{$login_label_width}><label for="username">{$lang_username}</label></div>
|
<div class="field"><input type="text" name="username" id="username" class="text_input initial_focus" /></div>
|
<div class="field"><input type="text" name="username" id="username" class="text_input initial_focus" /></div>
|
|
|
<div class="label"{$login_label_width}><label for="password">{$lang->password}</label></div> <div class="field"><input type="password" name="password" id="password" class="text_input" /></div> </div>
| <div class="label"{$login_label_width}><label for="password">{$lang->password}</label></div> <div class="field"><input type="password" name="password" id="password" class="text_input" /></div> </div>
|
Zeile 424 | Zeile 423 |
---|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head profile="http://gmpg.org/xfn/1"> <title>{$lang->mybb_admin_cp} - {$lang->error_mybb_admin_lockedout}</title>
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head profile="http://gmpg.org/xfn/1"> <title>{$lang->mybb_admin_cp} - {$lang->error_mybb_admin_lockedout}</title>
|
<meta name="author" content="MyBB Group" /> <meta name="copyright" content="Copyright {$copy_year} MyBB Group." /> <link rel="stylesheet" href="./styles/{$cp_style}/login.css" type="text/css" /> </head> <body> <div id="container"> <div id="header"> <div id="logo"> <h1><a href="../" title="{$lang->return_to_forum}"><span class="invisible">{$lang->mybb_acp}</span></a></h1>
| <meta name="author" content="MyBB Group" /> <meta name="copyright" content="Copyright {$copy_year} MyBB Group." /> <link rel="stylesheet" href="./styles/{$cp_style}/login.css" type="text/css" /> </head> <body> <div id="container"> <div id="header"> <div id="logo"> <h1><a href="../" title="{$lang->return_to_forum}"><span class="invisible">{$lang->mybb_acp}</span></a></h1>
|
</div> </div> <div id="content">
| </div> </div> <div id="content">
|
Zeile 456 | Zeile 455 |
---|
global $lang, $mybb, $cp_style;
$copy_year = COPY_YEAR;
|
global $lang, $mybb, $cp_style;
$copy_year = COPY_YEAR;
|
| switch($mybb->settings['username_method']) { case 0: $lang_username = $lang->username; break; case 1: $lang_username = $lang->username1; break; case 2: $lang_username = $lang->username2; break; default: $lang_username = $lang->username; break; }
|
print <<<EOF <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
| print <<<EOF <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
Zeile 480 | Zeile 494 |
---|
<form method="post" action="index.php"> <div class="form_container">
|
<form method="post" action="index.php"> <div class="form_container">
|
<div class="label"{$login_label_width}><label for="username">{$lang->username}</label></div>
| <div class="label"{$login_label_width}><label for="username">{$lang_username}</label></div>
|
<div class="field"><input type="text" name="username" id="username" class="text_input initial_focus" /></div>
| <div class="field"><input type="text" name="username" id="username" class="text_input initial_focus" /></div>
|
Zeile 606 | Zeile 620 |
---|
function output_tab_control($tabs=array(), $observe_onload=true, $id="tabs") { global $plugins;
|
function output_tab_control($tabs=array(), $observe_onload=true, $id="tabs") { global $plugins;
|
$plugins->run_hooks_by_ref("admin_page_output_tab_control_start", $tabs);
| $tabs = $plugins->run_hooks("admin_page_output_tab_control_start", $tabs);
|
echo "<script type=\"text/javascript\">\n"; if($observe_onload) {
| echo "<script type=\"text/javascript\">\n"; if($observe_onload) {
|
Zeile 651 | Zeile 665 |
---|
function output_nav_tabs($tabs=array(), $active='') { global $plugins;
|
function output_nav_tabs($tabs=array(), $active='') { global $plugins;
|
$plugins->run_hooks_by_ref("admin_page_output_nav_tabs_start", $tabs);
| $tabs = $plugins->run_hooks("admin_page_output_nav_tabs_start", $tabs);
|
echo "<div class=\"nav_tabs\">"; echo "\t<ul>\n"; foreach($tabs as $id => $tab)
| echo "<div class=\"nav_tabs\">"; echo "\t<ul>\n"; foreach($tabs as $id => $tab)
|
Zeile 769 | Zeile 783 |
---|
*/ function add_menu_items($items, $active) {
|
*/ function add_menu_items($items, $active) {
|
| global $run_module;
|
$this->_contents = "<ul class=\"menu\">"; foreach($items as $item) {
|
$this->_contents = "<ul class=\"menu\">"; foreach($items as $item) {
|
| if(!check_admin_permissions(array("module" => $run_module, "action" => $item['id']), false)) { continue; }
|
$class = ""; if($item['id'] == $active) {
| $class = ""; if($item['id'] == $active) {
|