Zeile 202 | Zeile 202 |
---|
if($mybb->input['continue']) {
|
if($mybb->input['continue']) {
|
admin_redirect("index.php?module=style/templates&action=edit_template&tid=".intval($tid)."&sid=".$sid.$expand_str2);
| admin_redirect("index.php?module=style/templates&action=edit_template&title=".urlencode($mybb->input['title'])."&sid=".$sid.$expand_str2);
|
} else {
| } else {
|
Zeile 231 | Zeile 231 |
---|
$page->add_breadcrumb_item($template_sets[$sid], "index.php?module=style/templates&sid={$sid}{$expand_str}"); }
|
$page->add_breadcrumb_item($template_sets[$sid], "index.php?module=style/templates&sid={$sid}{$expand_str}"); }
|
$page->extra_header .= '
| if($admin_options['codepress'] != 0) { $page->extra_header .= '
|
<link type="text/css" href="./jscripts/codepress/languages/codepress-mybb.css" rel="stylesheet" id="cp-lang-style" /> <script type="text/javascript" src="./jscripts/codepress/codepress.js"></script> <script type="text/javascript"> CodePress.language = \'mybb\'; </script>';
|
<link type="text/css" href="./jscripts/codepress/languages/codepress-mybb.css" rel="stylesheet" id="cp-lang-style" /> <script type="text/javascript" src="./jscripts/codepress/codepress.js"></script> <script type="text/javascript"> CodePress.language = \'mybb\'; </script>';
|
| }
|
$page->add_breadcrumb_item($lang->add_template);
| $page->add_breadcrumb_item($lang->add_template);
|
Zeile 247 | Zeile 250 |
---|
'title' => $lang->add_template, 'link' => "index.php?module=style/templates&action=add_template&sid=".$template['sid'].$expand_str, 'description' => $lang->add_template_desc
|
'title' => $lang->add_template, 'link' => "index.php?module=style/templates&action=add_template&sid=".$template['sid'].$expand_str, 'description' => $lang->add_template_desc
|
); $page->output_nav_tabs($sub_tabs, 'add_template');
| ); $page->output_nav_tabs($sub_tabs, 'add_template');
|
if($errors) {
| if($errors) {
|
Zeile 266 | Zeile 269 |
---|
$buttons[] = $form->generate_submit_button($lang->save_continue, array('name' => 'continue')); $buttons[] = $form->generate_submit_button($lang->save_close, array('name' => 'close'));
|
$buttons[] = $form->generate_submit_button($lang->save_continue, array('name' => 'continue')); $buttons[] = $form->generate_submit_button($lang->save_close, array('name' => 'close'));
|
|
|
$form->output_submit_wrapper($buttons); $form->end();
|
$form->output_submit_wrapper($buttons); $form->end();
|
echo "<script language=\"Javascript\" type=\"text/javascript\">
| if($admin_options['codepress'] != 0) { echo "<script type=\"text/javascript\">
|
Event.observe('add_template', 'submit', function() { if($('template_cp')) {
| Event.observe('add_template', 'submit', function() { if($('template_cp')) {
|
Zeile 282 | Zeile 287 |
---|
} }); </script>";
|
} }); </script>";
|
$page->output_footer(); }
| }
$page->output_footer(); }
|
if($mybb->input['action'] == "edit_set") {
| if($mybb->input['action'] == "edit_set") {
|
Zeile 335 | Zeile 341 |
---|
); $page->output_nav_tabs($sub_tabs, 'edit_set');
|
); $page->output_nav_tabs($sub_tabs, 'edit_set');
|
|
|
if($errors) { $page->output_inline_error($errors);
| if($errors) { $page->output_inline_error($errors);
|
Zeile 352 | Zeile 358 |
---|
$form_container = new FormContainer($lang->edit_set); $form_container->output_row($lang->title, "", $form->generate_text_box('title', $mybb->input['title'], array('id' => 'title')), 'title'); $form_container->end();
|
$form_container = new FormContainer($lang->edit_set); $form_container->output_row($lang->title, "", $form->generate_text_box('title', $mybb->input['title'], array('id' => 'title')), 'title'); $form_container->end();
|
|
|
$buttons = array(); $buttons[] = $form->generate_submit_button($lang->save);
|
$buttons = array(); $buttons[] = $form->generate_submit_button($lang->save);
|
|
|
$form->output_submit_wrapper($buttons);
|
$form->output_submit_wrapper($buttons);
|
|
|
$form->end();
|
$form->end();
|
|
|
$page->output_footer(); }
| $page->output_footer(); }
|
Zeile 367 | Zeile 373 |
---|
{ $plugins->run_hooks("admin_style_templates_edit_template");
|
{ $plugins->run_hooks("admin_style_templates_edit_template");
|
if(!$mybb->input['tid'] || !$sid)
| if(!$mybb->input['title'] || !$sid)
|
{ flash_message($lang->error_missing_input, 'error');
|
{ flash_message($lang->error_missing_input, 'error');
|
admin_redirect("index.php?module=style/templates");
| admin_redirect("index.php?module=style/templates");
|
} if($mybb->request_method == "post")
| } if($mybb->request_method == "post")
|
Zeile 402 | Zeile 408 |
---|
else { $db->update_query("templates", $template_array, "tid='{$tid}'");
|
else { $db->update_query("templates", $template_array, "tid='{$tid}'");
|
}
| }
|
} else {
| } else {
|
Zeile 417 | Zeile 423 |
---|
$exploded = explode("_", $template_array['title'], 2); $prefix = $exploded[0];
|
$exploded = explode("_", $template_array['title'], 2); $prefix = $exploded[0];
|
|
|
$query = $db->simple_select("templategroups", "gid", "prefix = '".$db->escape_string($prefix)."'"); $group = $db->fetch_field($query, "gid");
|
$query = $db->simple_select("templategroups", "gid", "prefix = '".$db->escape_string($prefix)."'"); $group = $db->fetch_field($query, "gid");
|
|
|
if(!$group)
|
if(!$group)
|
{
| {
|
$group = "-1"; } // Log admin action log_admin_action($tid, $mybb->input['title'], $sid, $set['title']);
|
$group = "-1"; } // Log admin action log_admin_action($tid, $mybb->input['title'], $sid, $set['title']);
|
|
|
flash_message($lang->success_template_saved, 'success'); if($mybb->input['continue'])
|
flash_message($lang->success_template_saved, 'success'); if($mybb->input['continue'])
|
{ admin_redirect("index.php?module=style/templates&action=edit_template&tid=".intval($mybb->input['tid'])."&sid=".$sid.$expand_str2); }
| { if($mybb->input['from'] == "diff_report") { admin_redirect("index.php?module=style/templates&action=edit_template&title=".urlencode($mybb->input['title'])."&sid=".$sid.$expand_str2."&from=diff_report"); } else { admin_redirect("index.php?module=style/templates&action=edit_template&title=".urlencode($mybb->input['title'])."&sid=".$sid.$expand_str2); } }
|
else {
|
else {
|
admin_redirect("index.php?module=style/templates&sid=".$sid.$expand_str2."#group_{$group}");
| if($mybb->input['from'] == "diff_report") { admin_redirect("index.php?module=style/templates&action=find_updated"); } else { admin_redirect("index.php?module=style/templates&sid=".$sid.$expand_str2."#group_{$group}"); }
|
} } }
| } } }
|
Zeile 448 | Zeile 468 |
---|
$template = $mybb->input; } else
|
$template = $mybb->input; } else
|
{ $query = $db->simple_select("templates", "title", "tid='".intval($mybb->input['tid'])."' AND (sid='-2' OR sid='{$sid}')", array('order_by' => 'sid', 'order_dir' => 'ASC', 'limit' => 1)); $title = $db->fetch_field($query, "title"); $query = $db->simple_select("templates", "*", "title='".$db->escape_string($title)."' AND (sid='-2' OR sid='{$sid}')", array('order_by' => 'sid', 'order_dir' => 'DESC', 'limit' => 1));
| { $query = $db->simple_select("templates", "*", "title='".$db->escape_string($mybb->input['title'])."' AND (sid='-2' OR sid='{$sid}')", array('order_by' => 'sid', 'order_dir' => 'DESC', 'limit' => 1));
|
$template = $db->fetch_array($query);
|
$template = $db->fetch_array($query);
|
}
| }
|
|
|
$page->extra_header .= '
| if($admin_options['codepress'] != 0) { $page->extra_header .= '
|
<link type="text/css" href="./jscripts/codepress/languages/codepress-mybb.css" rel="stylesheet" id="cp-lang-style" /> <script type="text/javascript" src="./jscripts/codepress/codepress.js"></script> <script type="text/javascript"> CodePress.language = \'mybb\'; </script>';
|
<link type="text/css" href="./jscripts/codepress/languages/codepress-mybb.css" rel="stylesheet" id="cp-lang-style" /> <script type="text/javascript" src="./jscripts/codepress/codepress.js"></script> <script type="text/javascript"> CodePress.language = \'mybb\'; </script>';
|
| }
|
|
|
$page->add_breadcrumb_item($template_sets[$sid], "index.php?module=style/templates&sid={$sid}{$expand_str}"); $page->add_breadcrumb_item($lang->edit_template_breadcrumb.$template['title'], "index.php?module=style/templates&sid={$sid}");
| $page->add_breadcrumb_item($template_sets[$sid], "index.php?module=style/templates&sid={$sid}{$expand_str}");
|
|
|
$page->output_header($lang->edit_template);
| if($mybb->input['from'] == "diff_report") { $page->add_breadcrumb_item($lang->find_updated, "index.php?module=style/templates&action=find_updated"); } $page->add_breadcrumb_item($lang->edit_template_breadcrumb.$template['title'], "index.php?module=style/templates&sid={$sid}"); $page->output_header($lang->edit_template);
|
$sub_tabs = array();
|
$sub_tabs = array();
|
| if($mybb->input['from'] == "diff_report") { $sub_tabs['find_updated'] = array( 'title' => $lang->find_updated, 'link' => "index.php?module=style/templates&action=find_updated" ); $sub_tabs['diff_report'] = array( 'title' => $lang->diff_report, 'link' => "index.php?module=style/templates&action=diff_report&title=".$db->escape_string($template['title'])."&sid1=".intval($template['sid'])."&sid2=-2", ); }
|
$sub_tabs['edit_template'] = array( 'title' => $lang->edit_template,
|
$sub_tabs['edit_template'] = array( 'title' => $lang->edit_template,
|
'link' => "index.php?module=style/templates&action=edit_template&tid=".$mybb->input['tid'].$expand_str,
| 'link' => "index.php?module=style/templates&action=edit_template&title=".htmlspecialchars_uni($template['title']).$expand_str,
|
'description' => $lang->edit_template_desc ); $page->output_nav_tabs($sub_tabs, 'edit_template'); $form = new Form("index.php?module=style/templates&action=edit_template{$expand_str}", "post", "edit_template");
|
'description' => $lang->edit_template_desc ); $page->output_nav_tabs($sub_tabs, 'edit_template'); $form = new Form("index.php?module=style/templates&action=edit_template{$expand_str}", "post", "edit_template");
|
echo $form->generate_hidden_field('tid', $template['tid']);
| echo $form->generate_hidden_field('tid', $template['tid'])."\n"; if($mybb->input['from'] == "diff_report") { echo $form->generate_hidden_field('from', "diff_report"); }
|
$form_container = new FormContainer($lang->edit_template_breadcrumb.$template['title']); $form_container->output_row($lang->template_name, $lang->template_name_desc, $form->generate_text_box('title', $template['title'], array('id' => 'title')), 'title');
| $form_container = new FormContainer($lang->edit_template_breadcrumb.$template['title']); $form_container->output_row($lang->template_name, $lang->template_name_desc, $form->generate_text_box('title', $template['title'], array('id' => 'title')), 'title');
|
Zeile 494 | Zeile 538 |
---|
$form->end();
|
$form->end();
|
echo "<script language=\"Javascript\" type=\"text/javascript\">
| if($admin_options['codepress'] != 0) { echo "<script type=\"text/javascript\">
|
Event.observe('edit_template', 'submit', function() { if($('template_cp')) {
| Event.observe('edit_template', 'submit', function() { if($('template_cp')) {
|
Zeile 505 | Zeile 551 |
---|
} }); </script>";
|
} }); </script>";
|
| }
|
$page->output_footer(); }
| $page->output_footer(); }
|
Zeile 525 | Zeile 572 |
---|
admin_redirect("index.php?module=style/templates&action=search_replace"); } else
|
admin_redirect("index.php?module=style/templates&action=search_replace"); } else
|
{
| { $page->add_breadcrumb_item($lang->search_replace);
|
$page->output_header($lang->search_replace); $page->output_nav_tabs($sub_tabs, 'search_replace');
| $page->output_header($lang->search_replace); $page->output_nav_tabs($sub_tabs, 'search_replace');
|
Zeile 572 | Zeile 621 |
---|
$table->construct_header($search_header, array("colspan" => 2)); foreach($templates as $title => $template)
|
$table->construct_header($search_header, array("colspan" => 2)); foreach($templates as $title => $template)
|
{
| {
|
// Do replacement $newtemplate = str_ireplace($mybb->input['find'], $mybb->input['replace'], $template['template']); if($newtemplate != $template['template'])
| // Do replacement $newtemplate = str_ireplace($mybb->input['find'], $mybb->input['replace'], $template['template']); if($newtemplate != $template['template'])
|
Zeile 593 | Zeile 642 |
---|
); $new_tid = $db->insert_query("templates", $new_template); $label = $lang->sprintf($lang->search_created_custom, $template['title']);
|
); $new_tid = $db->insert_query("templates", $new_template); $label = $lang->sprintf($lang->search_created_custom, $template['title']);
|
$url = "index.php?module=style/templates&action=edit_template&tid={$new_tid}&sid=1";
| $url = "index.php?module=style/templates&action=edit_template&title=".urlencode($template['title'])."&sid=1";
|
} else {
| } else {
|
Zeile 604 | Zeile 653 |
---|
); $db->update_query("templates", $updatedtemplate, "tid='".$template['tid']."'"); $label = $lang->sprintf($lang->search_updated, $template['title']);
|
); $db->update_query("templates", $updatedtemplate, "tid='".$template['tid']."'"); $label = $lang->sprintf($lang->search_updated, $template['title']);
|
$url = "index.php?module=style/templates&action=edit_template&tid={$template['tid']}&sid={$template['sid']}"; } } else {
| $url = "index.php?module=style/templates&action=edit_template&title=".urlencode($template['title'])."&sid={$template['sid']}"; } } else {
|
// Just show that the term was found if($template['sid'] == -2)
|
// Just show that the term was found if($template['sid'] == -2)
|
{ $label = $lang->sprintf($lang->search_found, $template['title']);
| { $label = $lang->sprintf($lang->search_found, $template['title']);
|
} else { $label = $lang->sprintf($lang->search_found, $template['title']);
|
} else { $label = $lang->sprintf($lang->search_found, $template['title']);
|
$url = "index.php?module=style/templates&action=edit_template&tid={$template['tid']}&sid={$template['sid']}";
| $url = "index.php?module=style/templates&action=edit_template&title=".urlencode($template['title'])."&sid={$template['sid']}";
|
}
|
}
|
| } } else { // Just show that the term was found if($template['sid'] == -2) { $label = $lang->sprintf($lang->search_found, $template['title']); } else { $label = $lang->sprintf($lang->search_found, $template['title']); $url = "index.php?module=style/templates&action=edit_template&title=".urlencode($template['title'])."&sid={$template['sid']}";
|
} } $table->construct_cell($label, array("width" => "85%"));
|
} } $table->construct_cell($label, array("width" => "85%"));
|
|
|
if($sid == -2) { $popup = new PopupMenu("template_{$template['tid']}", $lang->options);
| if($sid == -2) { $popup = new PopupMenu("template_{$template['tid']}", $lang->options);
|
Zeile 632 | Zeile 694 |
---|
{ if($set_sid > 0) {
|
{ if($set_sid > 0) {
|
$popup->add_item($lang->edit_in." ".htmlspecialchars_uni($title), "index.php?module=style/templates&action=edit_template&tid={$template['tid']}&sid={$set_sid}");
| $popup->add_item($lang->edit_in." ".htmlspecialchars_uni($title), "index.php?module=style/templates&action=edit_template&title=".urlencode($template['title'])."&sid={$set_sid}");
|
} }
| } }
|
Zeile 653 | Zeile 715 |
---|
else { $table->output();
|
else { $table->output();
|
} } }
| } } }
|
if(trim($mybb->input['replace']) != "") {
| if(trim($mybb->input['replace']) != "") {
|
Zeile 689 | Zeile 751 |
---|
while($set = $db->fetch_array($query)) { $template_sets[$set['sid']] = $set['title'];
|
while($set = $db->fetch_array($query)) { $template_sets[$set['sid']] = $set['title'];
|
}
| }
|
$table = new Table;
| $table = new Table;
|
Zeile 706 | Zeile 768 |
---|
if($template['sid'] == -2) { if(!$template['customtid'])
|
if($template['sid'] == -2) { if(!$template['customtid'])
|
{
| {
|
$template['original'] = true;
|
$template['original'] = true;
|
}
| }
|
else { $template['modified'] = true; }
|
else { $template['modified'] = true; }
|
}
| }
|
else { $template['original'] = false;
| else { $template['original'] = false;
|
Zeile 721 | Zeile 783 |
---|
} $templatessets[$template['sid']][$template['title']] = $template; }
|
} $templatessets[$template['sid']][$template['title']] = $template; }
|
| $page->add_breadcrumb_item($lang->search_replace);
|
$page->output_header($lang->search_replace);
| $page->output_header($lang->search_replace);
|
Zeile 740 | Zeile 804 |
---|
foreach($templatessets as $sid => $templates) { ++$count;
|
foreach($templatessets as $sid => $templates) { ++$count;
|
|
|
$table->construct_header($template_sets[$sid], array("colspan" => 2)); foreach($templates as $template) {
|
$table->construct_header($template_sets[$sid], array("colspan" => 2)); foreach($templates as $template) {
|
| $template['pretty_title'] = $template['title'];
|
$popup = new PopupMenu("template_{$template['tid']}", $lang->options); if($sid == -2)
| $popup = new PopupMenu("template_{$template['tid']}", $lang->options); if($sid == -2)
|
Zeile 753 | Zeile 819 |
---|
{ if($set_sid < 0) continue;
|
{ if($set_sid < 0) continue;
|
$popup->add_item($lang->edit_in." ".htmlspecialchars_uni($title), "index.php?module=style/templates&action=edit_template&tid={$template['tid']}&sid={$set_sid}");
| $popup->add_item($lang->edit_in." ".htmlspecialchars_uni($title), "index.php?module=style/templates&action=edit_template&title=".urlencode($template['title'])."&sid={$set_sid}");
|
} } else
|
} } else
|
{ $popup->add_item($lang->full_edit, "index.php?module=style/templates&action=edit_template&tid={$template['tid']}&sid={$sid}"); }
| { $popup->add_item($lang->full_edit, "index.php?module=style/templates&action=edit_template&title=".urlencode($template['title'])."&sid={$sid}"); }
|
if(isset($template['modified']) && $template['modified'] == true) {
| if(isset($template['modified']) && $template['modified'] == true) {
|
Zeile 767 | Zeile 833 |
---|
{ $popup->add_item($lang->diff_report, "index.php?module=style/templates&action=diff_report&title=".urlencode($template['title'])."&sid2={$sid}");
|
{ $popup->add_item($lang->diff_report, "index.php?module=style/templates&action=diff_report&title=".urlencode($template['title'])."&sid2={$sid}");
|
$popup->add_item($lang->revert_to_orig, "index.php?module=style/templates&action=revert&tid={$template['tid']}&sid={$sid}&my_post_key={$mybb->post_code}", "return AdminCP.deleteConfirmation(this, '{$lang->confirm_template_revertion}')");
| $popup->add_item($lang->revert_to_orig, "index.php?module=style/templates&action=revert&title=".urlencode($template['title'])."&sid={$sid}&my_post_key={$mybb->post_code}", "return AdminCP.deleteConfirmation(this, '{$lang->confirm_template_revertion}')");
|
}
|
}
|
$template['title'] = "<span style=\"color: green;\">{$template['title']}</span>";
| $template['pretty_title'] = "<span style=\"color: green;\">{$template['title']}</span>";
|
} // This template does not exist in the master list else if(!isset($template['original']) || $template['original'] == false) {
|
} // This template does not exist in the master list else if(!isset($template['original']) || $template['original'] == false) {
|
$popup->add_item($lang->delete_template, "index.php?module=style/templates&action=delete_template&tid={$template['tid']}&sid={$sid}&my_post_key={$mybb->post_code}", "return AdminCP.deleteConfirmation(this, '{$lang->confirm_template_deletion}')");
| $popup->add_item($lang->delete_template, "index.php?module=style/templates&action=delete_template&title=".urlencode($template['title'])."&sid={$sid}&my_post_key={$mybb->post_code}", "return AdminCP.deleteConfirmation(this, '{$lang->confirm_template_deletion}')");
|
|
|
$template['title'] = "<span style=\"color: blue;\">{$template['title']}</span>";
| $template['pretty_title'] = "<span style=\"color: blue;\">{$template['title']}</span>";
|
}
|
}
|
$table->construct_cell("<span style=\"padding: 20px;\"><a href=\"index.php?module=style/templates&action=edit_template&tid={$template['tid']}&sid={$sid}\">{$template['title']}</a></span>", array("width" => "85%"));
| $table->construct_cell("<span style=\"padding: 20px;\">{$template['pretty_title']}</span>", array("width" => "85%"));
|
$table->construct_cell($popup->fetch(), array("class" => "align_center")); $table->construct_row();
| $table->construct_cell($popup->fetch(), array("class" => "align_center")); $table->construct_row();
|
Zeile 798 | Zeile 864 |
---|
$page->output_footer(); exit;
|
$page->output_footer(); exit;
|
}
| }
|
}
|
}
|
} $page->extra_header .= '
| } if($admin_options['codepress'] != 0) { $page->extra_header .= '
|
<link type="text/css" href="./jscripts/codepress/languages/codepress-php.css" rel="stylesheet" id="cp-lang-style" /> <script type="text/javascript" src="./jscripts/codepress/codepress.js"></script> <script type="text/javascript"> CodePress.language = \'php\'; </script>';
|
<link type="text/css" href="./jscripts/codepress/languages/codepress-php.css" rel="stylesheet" id="cp-lang-style" /> <script type="text/javascript" src="./jscripts/codepress/codepress.js"></script> <script type="text/javascript"> CodePress.language = \'php\'; </script>';
|
| } $page->add_breadcrumb_item($lang->search_replace);
|
$page->output_header($lang->search_replace);
|
$page->output_header($lang->search_replace);
|
|
|
$page->output_nav_tabs($sub_tabs, 'search_replace');
|
$page->output_nav_tabs($sub_tabs, 'search_replace');
|
|
|
$form = new Form("index.php?module=style/templates&action=search_replace", "post", "do_template"); echo $form->generate_hidden_field('type', "templates"); $form_container = new FormContainer($lang->search_replace); $form_container->output_row($lang->search_for, "", $form->generate_text_area('find', $mybb->input['find'], array('id' => 'find', 'class' => 'codepress mybb', 'style' => 'width: 100%; height: 200px;')));
|
$form = new Form("index.php?module=style/templates&action=search_replace", "post", "do_template"); echo $form->generate_hidden_field('type', "templates"); $form_container = new FormContainer($lang->search_replace); $form_container->output_row($lang->search_for, "", $form->generate_text_area('find', $mybb->input['find'], array('id' => 'find', 'class' => 'codepress mybb', 'style' => 'width: 100%; height: 200px;')));
|
|
|
$form_container->output_row($lang->replace_with, "", $form->generate_text_area('replace', $mybb->input['replace'], array('id' => 'replace', 'class' => 'codepress mybb', 'style' => 'width: 100%; height: 200px;')));
|
$form_container->output_row($lang->replace_with, "", $form->generate_text_area('replace', $mybb->input['replace'], array('id' => 'replace', 'class' => 'codepress mybb', 'style' => 'width: 100%; height: 200px;')));
|
$form_container->end();
| $form_container->end();
|
$buttons[] = $form->generate_submit_button($lang->find_and_replace);
$form->output_submit_wrapper($buttons);
| $buttons[] = $form->generate_submit_button($lang->find_and_replace);
$form->output_submit_wrapper($buttons);
|
Zeile 843 | Zeile 914 |
---|
$buttons = array(); $buttons[] = $form->generate_submit_button($lang->find_templates); $buttons[] = $form->generate_reset_button($lang->reset);
|
$buttons = array(); $buttons[] = $form->generate_submit_button($lang->find_templates); $buttons[] = $form->generate_reset_button($lang->reset);
|
|
|
$form->output_submit_wrapper($buttons);
|
$form->output_submit_wrapper($buttons);
|
|
|
$form->end();
|
$form->end();
|
echo "<script language=\"Javascript\" type=\"text/javascript\">
| if($admin_options['codepress'] != 0) { echo "<script type=\"text/javascript\">
|
Event.observe('do_template', 'submit', function() { if($('find_cp')) { var area = $('find_cp'); area.id = 'find'; area.value = find.getCode();
|
Event.observe('do_template', 'submit', function() { if($('find_cp')) { var area = $('find_cp'); area.id = 'find'; area.value = find.getCode();
|
area.disabled = false;
| area.disabled = false;
|
} if($('replace_cp')) {
| } if($('replace_cp')) {
|
Zeile 866 | Zeile 939 |
---|
} }); </script>";
|
} }); </script>";
|
| }
|
$page->output_footer(); }
| $page->output_footer(); }
|
Zeile 889 | Zeile 963 |
---|
flash_message($lang->no_updated_templates, 'success'); admin_redirect("index.php?module=style/templates"); }
|
flash_message($lang->no_updated_templates, 'success'); admin_redirect("index.php?module=style/templates"); }
|
| $page->add_breadcrumb_item($lang->find_updated, "index.php?module=style/templates&action=find_updated");
|
$page->output_header($lang->find_updated);
| $page->output_header($lang->find_updated);
|
Zeile 943 | Zeile 1019 |
---|
foreach($templates as $template) { $popup = new PopupMenu("template_{$template['tid']}", $lang->options);
|
foreach($templates as $template) { $popup = new PopupMenu("template_{$template['tid']}", $lang->options);
|
//$popup->add_item($lang->inline_edit, "javascript:;"); $popup->add_item($lang->full_edit, "index.php?module=style/templates&action=edit_template&tid={$template['tid']}&sid=".$sid);
| $popup->add_item($lang->full_edit, "index.php?module=style/templates&action=edit_template&title=".urlencode($template['title'])."&sid={$sid}&from=diff_report");
|
$popup->add_item($lang->diff_report, "index.php?module=style/templates&action=diff_report&title=".urlencode($template['title'])."&sid1=".$template['sid']."&sid2=-2");
|
$popup->add_item($lang->diff_report, "index.php?module=style/templates&action=diff_report&title=".urlencode($template['title'])."&sid1=".$template['sid']."&sid2=-2");
|
$popup->add_item($lang->revert_to_orig, "index.php?module=style/templates&action=revert&tid={$template['tid']}&sid={$sid}&find_updated=1&my_post_key={$mybb->post_code}", "return AdminCP.deleteConfirmation(this, '{$lang->confirm_template_revertion}')");
| $popup->add_item($lang->revert_to_orig, "index.php?module=style/templates&action=revert&title=".urlencode($template['title'])."&sid={$sid}&from=diff_report&my_post_key={$mybb->post_code}", "return AdminCP.deleteConfirmation(this, '{$lang->confirm_template_revertion}')");
|
|
|
$table->construct_cell("<a href=\"index.php?module=style/templates&action=edit_template&tid={$template['tid']}&sid={$sid}\">{$template['title']}</a>", array('width' => '80%')); // onclick=\"Templates.quick_edit('{$template['tid']}'); return false;\"
| $table->construct_cell("<a href=\"index.php?module=style/templates&action=edit_template&title=".urlencode($template['title'])."&sid={$sid}&from=diff_report\">{$template['title']}</a>", array('width' => '80%'));
|
$table->construct_cell($popup->fetch(), array("class" => "align_center")); $table->construct_row();
| $table->construct_cell($popup->fetch(), array("class" => "align_center")); $table->construct_row();
|
Zeile 1034 | Zeile 1109 |
---|
SELECT t.*, s.title as set_title FROM ".TABLE_PREFIX."templates t LEFT JOIN ".TABLE_PREFIX."templatesets s ON(t.sid=s.sid)
|
SELECT t.*, s.title as set_title FROM ".TABLE_PREFIX."templates t LEFT JOIN ".TABLE_PREFIX."templatesets s ON(t.sid=s.sid)
|
WHERE t.tid='".intval($mybb->input['tid'])."' AND t.sid > '-2' AND t.sid = '{$sid}'
| WHERE t.title='".$db->escape_string($mybb->input['title'])."' AND t.sid > '-2' AND t.sid = '{$sid}'
|
"); $template = $db->fetch_array($query);
| "); $template = $db->fetch_array($query);
|
Zeile 1076 | Zeile 1151 |
---|
if(!$mybb->input['sid1']) { $mybb->input['sid1'] = -2;
|
if(!$mybb->input['sid1']) { $mybb->input['sid1'] = -2;
|
}
| }
|
if($mybb->input['sid2'] == -2) { $sub_tabs['find_updated'] = array( 'title' => $lang->find_updated, 'link' => "index.php?module=style/templates&action=find_updated"
|
if($mybb->input['sid2'] == -2) { $sub_tabs['find_updated'] = array( 'title' => $lang->find_updated, 'link' => "index.php?module=style/templates&action=find_updated"
|
);
| );
|
} $sub_tabs['diff_report'] = array(
| } $sub_tabs['diff_report'] = array(
|
Zeile 1093 | Zeile 1168 |
---|
); $plugins->run_hooks("admin_style_templates_diff_report");
|
); $plugins->run_hooks("admin_style_templates_diff_report");
|
|
|
$query = $db->simple_select("templates", "*", "title='".$db->escape_string($mybb->input['title'])."' AND sid='".intval($mybb->input['sid1'])."'"); $template1 = $db->fetch_array($query);
$query = $db->simple_select("templates", "*", "title='".$db->escape_string($mybb->input['title'])."' AND sid='".intval($mybb->input['sid2'])."'"); $template2 = $db->fetch_array($query);
|
$query = $db->simple_select("templates", "*", "title='".$db->escape_string($mybb->input['title'])."' AND sid='".intval($mybb->input['sid1'])."'"); $template1 = $db->fetch_array($query);
$query = $db->simple_select("templates", "*", "title='".$db->escape_string($mybb->input['title'])."' AND sid='".intval($mybb->input['sid2'])."'"); $template2 = $db->fetch_array($query);
|
| if($mybb->input['sid2'] == -2) { $sub_tabs['full_edit'] = array( 'title' => $lang->full_edit, 'link' => "index.php?module=style/templates&action=edit_template&title=".urlencode($template1['title'])."&sid=".intval($mybb->input['sid1'])."&from=diff_report", ); }
|
if($template1['template'] == $template2['template']) { flash_message($lang->templates_the_same, 'error'); admin_redirect("index.php?module=style/templates&sid=".intval($mybb->input['sid2']).$expand_str);
|
if($template1['template'] == $template2['template']) { flash_message($lang->templates_the_same, 'error'); admin_redirect("index.php?module=style/templates&sid=".intval($mybb->input['sid2']).$expand_str);
|
}
| }
|
$template1['template'] = explode("\n", $template1['template']); $template2['template'] = explode("\n", $template2['template']);
| $template1['template'] = explode("\n", $template1['template']); $template2['template'] = explode("\n", $template2['template']);
|
Zeile 1120 | Zeile 1203 |
---|
{ $page->add_breadcrumb_item($template_sets[$sid], "index.php?module=style/templates&sid={$sid}{$expand_str}"); }
|
{ $page->add_breadcrumb_item($template_sets[$sid], "index.php?module=style/templates&sid={$sid}{$expand_str}"); }
|
| if($mybb->input['sid2'] == -2) { $page->add_breadcrumb_item($lang->find_updated, "index.php?module=style/templates&action=find_updated"); } $page->add_breadcrumb_item($lang->diff_report.": ".$template1['title'], "index.php?module=style/templates&action=diff_report&title=".$db->escape_string($mybb->input['title'])."&sid1=".intval($mybb->input['sid1'])."&sid2=".intval($mybb->input['sid2']));
|
$page->output_header($lang->template_sets);
| $page->output_header($lang->template_sets);
|
Zeile 1129 | Zeile 1219 |
---|
$table->construct_header("<ins>".$lang->master_updated_ins."</ins><br /><del>".$lang->master_updated_del."</del>");
|
$table->construct_header("<ins>".$lang->master_updated_ins."</ins><br /><del>".$lang->master_updated_del."</del>");
|
$table->construct_cell("<pre>".$renderer->render($diff)."</pre>");
| $table->construct_cell("<pre class=\"differential\">".$renderer->render($diff)."</pre>");
|
$table->construct_row();
|
$table->construct_row();
|
$table->output($lang->template_diff_analysis);
| $table->output($lang->template_diff_analysis.": ".$template1['title']);
|
$page->output_footer(); }
| $page->output_footer(); }
|
Zeile 1145 | Zeile 1235 |
---|
SELECT t.*, s.title as set_title FROM ".TABLE_PREFIX."templates t LEFT JOIN ".TABLE_PREFIX."templatesets s ON(s.sid=t.sid)
|
SELECT t.*, s.title as set_title FROM ".TABLE_PREFIX."templates t LEFT JOIN ".TABLE_PREFIX."templatesets s ON(s.sid=t.sid)
|
WHERE t.tid='".intval($mybb->input['tid'])."' AND t.sid > 0 AND t.sid = '".intval($mybb->input['sid'])."'
| WHERE t.title='".$db->escape_string($mybb->input['title'])."' AND t.sid > 0 AND t.sid = '".intval($mybb->input['sid'])."'
|
"); $template = $db->fetch_array($query);
| "); $template = $db->fetch_array($query);
|
Zeile 1174 | Zeile 1264 |
---|
flash_message($lang->success_template_reverted, 'success');
|
flash_message($lang->success_template_reverted, 'success');
|
if($mybb->input['find_updated'] == 1)
| if($mybb->input['from'] == "diff_report")
|
{ admin_redirect("index.php?module=style/templates&action=find_updated"); }
| { admin_redirect("index.php?module=style/templates&action=find_updated"); }
|
Zeile 1211 | Zeile 1301 |
---|
while($template = $db->fetch_array($query)) { $popup = new PopupMenu("template_{$template['tid']}", $lang->options);
|
while($template = $db->fetch_array($query)) { $popup = new PopupMenu("template_{$template['tid']}", $lang->options);
|
$popup->add_item($lang->full_edit, "index.php?module=style/templates&action=edit_template&tid={$template['tid']}&sid=-1"); $popup->add_item($lang->delete_template, "index.php?module=style/templates&action=delete_template&tid={$template['tid']}&sid=-1&my_post_key={$mybb->post_code}", "return AdminCP.deleteConfirmation(this, '{$lang->confirm_template_deletion}')");
| $popup->add_item($lang->full_edit, "index.php?module=style/templates&action=edit_template&title=".urlencode($template['title'])."&sid=-1"); $popup->add_item($lang->delete_template, "index.php?module=style/templates&action=delete_template&title=".urlencode($template['title'])."&sid=-1&my_post_key={$mybb->post_code}", "return AdminCP.deleteConfirmation(this, '{$lang->confirm_template_deletion}')");
|
|
|
$table->construct_cell("<a href=\"index.php?module=style/templates&action=edit_template&tid={$template['tid']}&sid=-1\">{$template['title']}</a>");
| $table->construct_cell("<a href=\"index.php?module=style/templates&action=edit_template&title=".urlencode($template['title'])."&sid=-1\">{$template['title']}</a>");
|
$table->construct_cell($popup->fetch(), array("class" => "align_center")); $table->construct_row();
| $table->construct_cell($popup->fetch(), array("class" => "align_center")); $table->construct_row();
|
Zeile 1348 | Zeile 1438 |
---|
$group['expand_str'] .= $group['gid']; }
|
$group['expand_str'] .= $group['gid']; }
|
$table->construct_cell("<strong><a href=\"index.php?module=style/templates&sid={$sid}&expand={$group['expand_str']}#group_{$group['gid']}\">{$group['title']}</a></strong>"); $table->construct_cell("<a href=\"index.php?module=style/templates&sid={$sid}&expand={$group['expand_str']}#group_{$group['gid']}\">{$expand}</a>", array("class" => "align_center"));
| if($group['expand_str']) { $group['expand_str'] = "&expand={$group['expand_str']}"; } $table->construct_cell("<strong><a href=\"index.php?module=style/templates&sid={$sid}{$group['expand_str']}#group_{$group['gid']}\">{$group['title']}</a></strong>"); $table->construct_cell("<a href=\"index.php?module=style/templates&sid={$sid}{$group['expand_str']}#group_{$group['gid']}\">{$expand}</a>", array("class" => "align_center"));
|
$table->construct_row(array("class" => "alt_row", "id" => "group_".$group['gid'], "name" => "group_".$group['gid'])); if($expanded == true && isset($group['templates']) && count($group['templates']) > 0)
| $table->construct_row(array("class" => "alt_row", "id" => "group_".$group['gid'], "name" => "group_".$group['gid'])); if($expanded == true && isset($group['templates']) && count($group['templates']) > 0)
|
Zeile 1359 | Zeile 1454 |
---|
foreach($templates as $template) {
|
foreach($templates as $template) {
|
| $template['pretty_title'] = $template['title'];
|
$popup = new PopupMenu("template_{$template['tid']}", $lang->options);
|
$popup = new PopupMenu("template_{$template['tid']}", $lang->options);
|
$popup->add_item($lang->full_edit, "index.php?module=style/templates&action=edit_template&tid={$template['tid']}&sid={$sid}{$expand_str}");
| $popup->add_item($lang->full_edit, "index.php?module=style/templates&action=edit_template&title=".urlencode($template['title'])."&sid={$sid}{$expand_str}");
|
if(isset($template['modified']) && $template['modified'] == true) {
| if(isset($template['modified']) && $template['modified'] == true) {
|
Zeile 1368 | Zeile 1465 |
---|
{ $popup->add_item($lang->diff_report, "index.php?module=style/templates&action=diff_report&title=".urlencode($template['title'])."&sid2={$sid}");
|
{ $popup->add_item($lang->diff_report, "index.php?module=style/templates&action=diff_report&title=".urlencode($template['title'])."&sid2={$sid}");
|
$popup->add_item($lang->revert_to_orig, "index.php?module=style/templates&action=revert&tid={$template['tid']}&sid={$sid}&my_post_key={$mybb->post_code}{$expand_str}", "return AdminCP.deleteConfirmation(this, '{$lang->confirm_template_revertion}')");
| $popup->add_item($lang->revert_to_orig, "index.php?module=style/templates&action=revert&title=".urlencode($template['title'])."&sid={$sid}&my_post_key={$mybb->post_code}{$expand_str}", "return AdminCP.deleteConfirmation(this, '{$lang->confirm_template_revertion}')");
|
}
|
}
|
$template['title'] = "<span style=\"color: green;\">{$template['title']}</span>";
| $template['pretty_title'] = "<span style=\"color: green;\">{$template['title']}</span>";
|
} // This template does not exist in the master list else if(isset($template['original']) && $template['original'] == false) {
|
} // This template does not exist in the master list else if(isset($template['original']) && $template['original'] == false) {
|
$popup->add_item($lang->delete_template, "index.php?module=style/templates&action=delete_template&tid={$template['tid']}&sid={$sid}&my_post_key={$mybb->post_code}{$expand_str}", "return AdminCP.deleteConfirmation(this, '{$lang->confirm_template_deletion}')");
| $popup->add_item($lang->delete_template, "index.php?module=style/templates&action=delete_template&title=".urlencode($template['title'])."&sid={$sid}&my_post_key={$mybb->post_code}{$expand_str}", "return AdminCP.deleteConfirmation(this, '{$lang->confirm_template_deletion}')");
|
|
|
$template['title'] = "<span style=\"color: blue;\">{$template['title']}</span>";
| $template['pretty_title'] = "<span style=\"color: blue;\">{$template['title']}</span>";
|
}
|
}
|
$table->construct_cell("<span style=\"padding: 20px;\"><a href=\"index.php?module=style/templates&action=edit_template&tid={$template['tid']}&sid={$sid}{$expand_str}\" >{$template['title']}</a></span>");
| $table->construct_cell("<span style=\"padding: 20px;\"><a href=\"index.php?module=style/templates&action=edit_template&title=".urlencode($template['title'])."&sid={$sid}{$expand_str}\" >{$template['pretty_title']}</a></span>");
|
$table->construct_cell($popup->fetch(), array("class" => "align_center")); $table->construct_row();
| $table->construct_cell($popup->fetch(), array("class" => "align_center")); $table->construct_row();
|