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 5620 2011-09-26 18:23:52Z ralgith $
| * $Id: class_page.php 5757 2012-03-09 15:11:56Z Tomm $
|
*/
/*
| */
/*
|
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";
| |
} /** * Output a success message.
|
} /** * Output a success message.
|
* * @param string The message to output. */
| * * @param string The message to output. */
|
function output_success($message) { echo "<div class=\"success\">{$message}</div>\n";
| function output_success($message) { echo "<div class=\"success\">{$message}</div>\n";
|
Zeile 262 | Zeile 245 |
---|
$id = " id=\"{$id}\""; } echo "<div class=\"alert\"{$id}>{$message}</div>\n";
|
$id = " id=\"{$id}\""; } echo "<div class=\"alert\"{$id}>{$message}</div>\n";
|
} /**
| } /**
|
* Output an inline message.
|
* Output an inline message.
|
* * @param string The message to output. */
| * * @param string The message to output. */
|
function output_inline_message($message) { echo "<div class=\"inline_message\">{$message}</div>\n";
| function output_inline_message($message) { echo "<div class=\"inline_message\">{$message}</div>\n";
|
Zeile 278 | Zeile 261 |
---|
* Output a single error message. * * @param string The message to output.
|
* Output a single error message. * * @param string The message to output.
|
*/
| */
|
function output_error($error) { echo "<div class=\"error\">\n";
| function output_error($error) { echo "<div class=\"error\">\n";
|
Zeile 292 | Zeile 275 |
---|
* @param array Array of error messages to output. */ function output_inline_error($errors)
|
* @param array Array of error messages to output. */ function output_inline_error($errors)
|
{
| {
|
global $lang; if(!is_array($errors)) { $errors = array($errors);
|
global $lang; if(!is_array($errors)) { $errors = array($errors);
|
}
| }
|
echo "<div class=\"error\">\n"; echo "<p><em>{$lang->encountered_errors}</em></p>\n"; echo "<ul>\n";
| echo "<div class=\"error\">\n"; echo "<p><em>{$lang->encountered_errors}</em></p>\n"; echo "<ul>\n";
|
Zeile 318 | Zeile 301 |
---|
* @param string The class name of the message (defaults to success) */ function show_login($message="", $class="success")
|
* @param string The class name of the message (defaults to success) */ function show_login($message="", $class="success")
|
{ global $lang, $cp_style;
$copy_year = COPY_YEAR;
| { global $lang, $cp_style, $mybb;
$copy_year = COPY_YEAR;
|
$login_container_width = ""; $login_label_width = "";
| $login_container_width = ""; $login_label_width = "";
|
Zeile 375 | Zeile 358 |
---|
$query_string = preg_replace('#&+#', '&', $query_string); $query_string = str_replace('?&', '?', $query_string); $query_string = htmlspecialchars_uni($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 381 |
---|
<p>{$lang->enter_username_and_password}</p> <form method="post" action="{$_SERVER['PHP_SELF']}{$query_string}"> <div class="form_container">
|
<p>{$lang->enter_username_and_password}</p> <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="label"{$login_label_width}><label for="password">{$lang->password}</label></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>
|
Zeile 400 | Zeile 398 |
---|
<input type="hidden" name="do" value="login" /> </p> </form>
|
<input type="hidden" name="do" value="login" /> </p> </form>
|
</div> </div> </body> </html>
| </div> </div> </body> </html>
|
EOF; exit; }
| EOF; exit; }
|
Zeile 457 | 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 481 | 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>
|