Zeile 243 | Zeile 243 |
---|
echo "<input type=\"submit\" class=\"search_button\" value=\"{$lang->search}\" />\n"; echo "<script type=\"text/javascript\"> var form = $(\"#search_form\");
|
echo "<input type=\"submit\" class=\"search_button\" value=\"{$lang->search}\" />\n"; echo "<script type=\"text/javascript\"> var form = $(\"#search_form\");
|
form.submit(function()
| form.on('submit', function()
|
{ var search = $('#search_keywords'); if(search.val() == '' || search.val() == '{$lang->search_for_themes}') {
|
{ var search = $('#search_keywords'); if(search.val() == '' || search.val() == '{$lang->search_for_themes}') {
|
search.focus();
| search.trigger('focus');
|
return false; } });
var search = $('#search_keywords');
|
return false; } });
var search = $('#search_keywords');
|
search.focus(function()
| search.on('focus', function()
|
{ var search_focus = $(this); if(search_focus.val() == '{$lang->search_for_themes}')
| { var search_focus = $(this); if(search_focus.val() == '{$lang->search_for_themes}')
|
Zeile 262 | Zeile 262 |
---|
search_focus.removeClass('search_default'); search_focus.val(''); }
|
search_focus.removeClass('search_default'); search_focus.val(''); }
|
});
search.blur(function()
| }).on('blur', function()
|
{ var search_blur = $(this); if(search_blur.val() == '')
| { var search_blur = $(this); if(search_blur.val() == '')
|
Zeile 284 | Zeile 282 |
---|
echo $search->end();
// Recommended themes = Default; Otherwise search results & pagination
|
echo $search->end();
// Recommended themes = Default; Otherwise search results & pagination
|
if($mybb->request_method == "post") {
| if($mybb->request_method == "post") {
|
$table->output("<span style=\"float: right;\"><small><a href=\"https://community.mybb.com/mods.php?action=browse&category=themes\" target=\"_blank\" rel=\"noopener\">{$lang->browse_all_themes}</a></small></span>".$lang->sprintf($lang->browse_results_for_mybb, $mybb->version)); } else
| $table->output("<span style=\"float: right;\"><small><a href=\"https://community.mybb.com/mods.php?action=browse&category=themes\" target=\"_blank\" rel=\"noopener\">{$lang->browse_all_themes}</a></small></span>".$lang->sprintf($lang->browse_results_for_mybb, $mybb->version)); } else
|
Zeile 305 | Zeile 303 |
---|
if($mybb->request_method == "post") { if(!$_FILES['local_file'] && !$mybb->input['url'])
|
if($mybb->request_method == "post") { if(!$_FILES['local_file'] && !$mybb->input['url'])
|
{
| {
|
$errors[] = $lang->error_missing_url; }
| $errors[] = $lang->error_missing_url; }
|
Zeile 510 | Zeile 508 |
---|
$form->output_submit_wrapper($buttons);
$form->end();
|
$form->output_submit_wrapper($buttons);
$form->end();
|
|
|
$page->output_footer(); }
| $page->output_footer(); }
|
Zeile 584 | Zeile 582 |
---|
$inherited_load[] = $mybb->input['tid']; $inherited_load = array_unique($inherited_load);
|
$inherited_load[] = $mybb->input['tid']; $inherited_load = array_unique($inherited_load);
|
$inherited_themes = array();
| $inherited_themes = $theme_stylesheets = array();
|
if(count($inherited_load) > 0) { $query = $db->simple_select("themes", "tid, name", "tid IN (".implode(",", $inherited_load).")");
| if(count($inherited_load) > 0) { $query = $db->simple_select("themes", "tid, name", "tid IN (".implode(",", $inherited_load).")");
|
Zeile 592 | Zeile 590 |
---|
{ $inherited_themes[$inherited_theme['tid']] = $inherited_theme['name']; }
|
{ $inherited_themes[$inherited_theme['tid']] = $inherited_theme['name']; }
|
}
$theme_stylesheets = array();
| |
|
|
if(count($inherited_load) > 0) {
| |
$query = $db->simple_select("themestylesheets", "*", "tid IN (".implode(",", $inherited_load).")", array('order_by' => 'tid', 'order_dir' => 'desc')); while($theme_stylesheet = $db->fetch_array($query)) {
| $query = $db->simple_select("themestylesheets", "*", "tid IN (".implode(",", $inherited_load).")", array('order_by' => 'tid', 'order_dir' => 'desc')); while($theme_stylesheet = $db->fetch_array($query)) {
|
Zeile 947 | Zeile 940 |
---|
}
if($mybb->input['action'] == "delete")
|
}
if($mybb->input['action'] == "delete")
|
{
| {
|
$query = $db->simple_select("themes", "*", "tid='".$mybb->get_input('tid', MyBB::INPUT_INT)."'"); $theme = $db->fetch_array($query);
| $query = $db->simple_select("themes", "*", "tid='".$mybb->get_input('tid', MyBB::INPUT_INT)."'"); $theme = $db->fetch_array($query);
|
Zeile 1116 | Zeile 1109 |
---|
if(is_array($theme_properties['disporder'])) { $properties['disporder'] = $theme_properties['disporder'];
|
if(is_array($theme_properties['disporder'])) { $properties['disporder'] = $theme_properties['disporder'];
|
}
| }
|
else { $errors[] = $lang->error_no_display_order;
|
else { $errors[] = $lang->error_no_display_order;
|
}
| }
|
$allowedgroups = array(); if(is_array($mybb->input['allowedgroups'])) { foreach($mybb->input['allowedgroups'] as $gid)
|
$allowedgroups = array(); if(is_array($mybb->input['allowedgroups'])) { foreach($mybb->input['allowedgroups'] as $gid)
|
{
| {
|
if($gid == "all") { $allowedgroups = "all";
| if($gid == "all") { $allowedgroups = "all";
|
Zeile 1137 | Zeile 1130 |
---|
} } if(is_array($allowedgroups))
|
} } if(is_array($allowedgroups))
|
{
| {
|
$allowedgroups = implode(",", $allowedgroups); }
| $allowedgroups = implode(",", $allowedgroups); }
|
Zeile 1159 | Zeile 1152 |
---|
$numthemes = $db->fetch_field($query, 'numthemes');
if($numthemes)
|
$numthemes = $db->fetch_field($query, 'numthemes');
if($numthemes)
|
{
| {
|
$errors[] = $lang->error_theme_already_exists; } }
| $errors[] = $lang->error_theme_already_exists; } }
|
Zeile 1169 | Zeile 1162 |
---|
$query = $db->simple_select("themes", "tid", "tid='".$update_array['pid']."'"); $parent_check = $db->fetch_field($query, "tid"); if(!$parent_check)
|
$query = $db->simple_select("themes", "tid", "tid='".$update_array['pid']."'"); $parent_check = $db->fetch_field($query, "tid"); if(!$parent_check)
|
{
| {
|
$errors[] = $lang->error_invalid_parent_theme; } } if($properties['templateset'])
|
$errors[] = $lang->error_invalid_parent_theme; } } if($properties['templateset'])
|
{
| {
|
$query = $db->simple_select("templatesets", "sid", "sid='".$properties['templateset']."'"); $ts_check = $db->fetch_field($query, "sid"); if(!$ts_check)
| $query = $db->simple_select("templatesets", "sid", "sid='".$properties['templateset']."'"); $ts_check = $db->fetch_field($query, "sid"); if(!$ts_check)
|
Zeile 1186 | Zeile 1179 |
---|
{ $errors[] = $lang->error_invalid_templateset; }
|
{ $errors[] = $lang->error_invalid_templateset; }
|
if(!$properties['editortheme'] || !file_exists(MYBB_ROOT."jscripts/sceditor/editor_themes/".$properties['editortheme']) || is_dir(MYBB_ROOT."jscripts/sceditor/editor_themes/".$properties['editortheme']))
| if(!$properties['editortheme'] || !file_exists(MYBB_ROOT."jscripts/sceditor/themes/".$properties['editortheme']) || is_dir(MYBB_ROOT."jscripts/sceditor/themes/".$properties['editortheme']))
|
{ $errors[] = $lang->error_invalid_editortheme; }
|
{ $errors[] = $lang->error_invalid_editortheme; }
|
|
|
if(empty($errors)) { $plugins->run_hooks("admin_style_themes_edit_commit");
| if(empty($errors)) { $plugins->run_hooks("admin_style_themes_edit_commit");
|
Zeile 1201 | Zeile 1194 |
---|
if($theme['def'] == 1) { $cache->update_default_theme();
|
if($theme['def'] == 1) { $cache->update_default_theme();
|
}
| }
|
// Log admin action log_admin_action($theme['tid'], $theme['name']);
| // Log admin action log_admin_action($theme['tid'], $theme['name']);
|
Zeile 1216 | Zeile 1209 |
---|
$stylesheets = array(); $inherited_load = array();
|
$stylesheets = array(); $inherited_load = array();
|
|
|
// Now we loop through the list of stylesheets for each file foreach($file_stylesheets as $file => $action_stylesheet) { if($file == 'inherited' || !is_array($action_stylesheet))
|
// Now we loop through the list of stylesheets for each file foreach($file_stylesheets as $file => $action_stylesheet) { if($file == 'inherited' || !is_array($action_stylesheet))
|
{
| {
|
continue; }
| continue; }
|
Zeile 1243 | Zeile 1236 |
---|
}
$inherited_load[] = $mybb->input['tid'];
|
}
$inherited_load[] = $mybb->input['tid'];
|
$inherited_load = array_unique($inherited_load);
$inherited_themes = array();
| $inherited_load = array_unique($inherited_load);
$inherited_themes = $theme_stylesheets = array();
|
if(count($inherited_load) > 0) { $query = $db->simple_select("themes", "tid, name", "tid IN (".implode(",", $inherited_load).")");
| if(count($inherited_load) > 0) { $query = $db->simple_select("themes", "tid, name", "tid IN (".implode(",", $inherited_load).")");
|
Zeile 1253 | Zeile 1246 |
---|
{ $inherited_themes[$inherited_theme['tid']] = $inherited_theme['name']; }
|
{ $inherited_themes[$inherited_theme['tid']] = $inherited_theme['name']; }
|
}
$theme_stylesheets = array();
| |
|
|
if(count($inherited_load) > 0) {
| |
$query = $db->simple_select("themestylesheets", "*", "", array('order_by' => 'sid DESC, tid', 'order_dir' => 'desc')); while($theme_stylesheet = $db->fetch_array($query))
|
$query = $db->simple_select("themestylesheets", "*", "", array('order_by' => 'sid DESC, tid', 'order_dir' => 'desc')); while($theme_stylesheet = $db->fetch_array($query))
|
{
| {
|
if(!isset($theme_stylesheets[$theme_stylesheet['name']]) && in_array($theme_stylesheet['tid'], $inherited_load)) { $theme_stylesheets[$theme_stylesheet['name']] = $theme_stylesheet; }
|
if(!isset($theme_stylesheets[$theme_stylesheet['name']]) && in_array($theme_stylesheet['tid'], $inherited_load)) { $theme_stylesheets[$theme_stylesheet['name']] = $theme_stylesheet; }
|
|
|
$theme_stylesheets[$theme_stylesheet['sid']] = $theme_stylesheet['name']; } }
| $theme_stylesheets[$theme_stylesheet['sid']] = $theme_stylesheet['name']; } }
|
Zeile 1289 | Zeile 1277 |
---|
$order = (int)$mybb->input['disporder'][$properties['sid']];
$orders[$properties['name']] = $order;
|
$order = (int)$mybb->input['disporder'][$properties['sid']];
$orders[$properties['name']] = $order;
|
} }
asort($orders, SORT_NUMERIC);
| } }
asort($orders, SORT_NUMERIC);
|
// Save the orders in the theme properties $properties = my_unserialize($theme['properties']);
| // Save the orders in the theme properties $properties = my_unserialize($theme['properties']);
|
Zeile 1303 | Zeile 1291 |
---|
);
$db->update_query("themes", $update_array, "tid = '{$theme['tid']}'");
|
);
$db->update_query("themes", $update_array, "tid = '{$theme['tid']}'");
|
|
|
if($theme['def'] == 1) { $cache->update_default_theme();
| if($theme['def'] == 1) { $cache->update_default_theme();
|
Zeile 1319 | Zeile 1307 |
---|
$page->add_breadcrumb_item(htmlspecialchars_uni($theme['name']), "index.php?module=style-themes&action=edit&tid={$mybb->input['tid']}");
$page->output_header("{$lang->themes} - {$lang->stylesheets}");
|
$page->add_breadcrumb_item(htmlspecialchars_uni($theme['name']), "index.php?module=style-themes&action=edit&tid={$mybb->input['tid']}");
$page->output_header("{$lang->themes} - {$lang->stylesheets}");
|
|
|
$sub_tabs['edit_stylesheets'] = array( 'title' => $lang->edit_stylesheets, 'link' => "index.php?module=style-themes&action=edit&tid={$mybb->input['tid']}", 'description' => $lang->edit_stylesheets_desc
|
$sub_tabs['edit_stylesheets'] = array( 'title' => $lang->edit_stylesheets, 'link' => "index.php?module=style-themes&action=edit&tid={$mybb->input['tid']}", 'description' => $lang->edit_stylesheets_desc
|
);
| );
|
$sub_tabs['add_stylesheet'] = array( 'title' => $lang->add_stylesheet, 'link' => "index.php?module=style-themes&action=add_stylesheet&tid={$mybb->input['tid']}",
| $sub_tabs['add_stylesheet'] = array( 'title' => $lang->add_stylesheet, 'link' => "index.php?module=style-themes&action=add_stylesheet&tid={$mybb->input['tid']}",
|
Zeile 1334 | Zeile 1322 |
---|
$sub_tabs['export_theme'] = array( 'title' => $lang->export_theme, 'link' => "index.php?module=style-themes&action=export&tid={$mybb->input['tid']}"
|
$sub_tabs['export_theme'] = array( 'title' => $lang->export_theme, 'link' => "index.php?module=style-themes&action=export&tid={$mybb->input['tid']}"
|
);
| );
|
$sub_tabs['duplicate_theme'] = array( 'title' => $lang->duplicate_theme, 'link' => "index.php?module=style-themes&action=duplicate&tid={$mybb->input['tid']}",
| $sub_tabs['duplicate_theme'] = array( 'title' => $lang->duplicate_theme, 'link' => "index.php?module=style-themes&action=duplicate&tid={$mybb->input['tid']}",
|
Zeile 1418 | Zeile 1406 |
---|
foreach($inherited_ary as $tid => $file) { if(isset($applied_to_count) && $count == $applied_to_count && $count != 0)
|
foreach($inherited_ary as $tid => $file) { if(isset($applied_to_count) && $count == $applied_to_count && $count != 0)
|
{ $sep = " {$lang->and} ";
| { $sep = " {$lang->and} ";
|
}
$inherited .= $sep.$file;
| }
$inherited .= $sep.$file;
|
Zeile 1466 | Zeile 1454 |
---|
// It's a file: ++$count;
|
// It's a file: ++$count;
|
| $name = htmlspecialchars_uni($name);
|
if($actions[0] != "global") {
|
if($actions[0] != "global") {
|
| $actions = array_map('htmlspecialchars_uni', $actions);
|
$name = "{$name} ({$lang->actions}: ".implode(',', $actions).")"; }
| $name = "{$name} ({$lang->actions}: ".implode(',', $actions).")"; }
|
Zeile 1575 | Zeile 1567 |
---|
$form_container->output_row($lang->template_set." <em>*</em>", $lang->template_set_desc, $form->generate_select_box('templateset', $options, $properties['templateset'], array('id' => 'templateset')), 'templateset');
$options = array();
|
$form_container->output_row($lang->template_set." <em>*</em>", $lang->template_set_desc, $form->generate_select_box('templateset', $options, $properties['templateset'], array('id' => 'templateset')), 'templateset');
$options = array();
|
$editor_theme_root = MYBB_ROOT."jscripts/sceditor/editor_themes/";
| $editor_theme_root = MYBB_ROOT."jscripts/sceditor/themes/";
|
if($dh = @opendir($editor_theme_root)) { while($dir = readdir($dh))
| if($dh = @opendir($editor_theme_root)) { while($dir = readdir($dh))
|
Zeile 1585 | Zeile 1577 |
---|
continue; } $options[$dir] = ucfirst(str_replace(array('_', '.css'), array(' ', ''), $dir));
|
continue; } $options[$dir] = ucfirst(str_replace(array('_', '.css'), array(' ', ''), $dir));
|
} }
| } }
|
$form_container->output_row($lang->editor_theme." <em>*</em>", $lang->editor_theme_desc, $form->generate_select_box('editortheme', $options, $properties['editortheme'], array('id' => 'editortheme')), 'editortheme');
$form_container->output_row($lang->img_directory, $lang->img_directory_desc, $form->generate_text_box('imgdir', $properties['imgdir'], array('id' => 'imgdir')), 'imgdir'); $form_container->output_row($lang->logo, $lang->logo_desc, $form->generate_text_box('logo', $properties['logo'], array('id' => 'boardlogo')), 'logo'); $form_container->output_row($lang->table_spacing, $lang->table_spacing_desc, $form->generate_numeric_field('tablespace', $properties['tablespace'], array('id' => 'tablespace', 'min' => 0)), 'tablespace'); $form_container->output_row($lang->inner_border, $lang->inner_border_desc, $form->generate_numeric_field('borderwidth', $properties['borderwidth'], array('id' => 'borderwidth', 'min' => 0)), 'borderwidth');
|
$form_container->output_row($lang->editor_theme." <em>*</em>", $lang->editor_theme_desc, $form->generate_select_box('editortheme', $options, $properties['editortheme'], array('id' => 'editortheme')), 'editortheme');
$form_container->output_row($lang->img_directory, $lang->img_directory_desc, $form->generate_text_box('imgdir', $properties['imgdir'], array('id' => 'imgdir')), 'imgdir'); $form_container->output_row($lang->logo, $lang->logo_desc, $form->generate_text_box('logo', $properties['logo'], array('id' => 'boardlogo')), 'logo'); $form_container->output_row($lang->table_spacing, $lang->table_spacing_desc, $form->generate_numeric_field('tablespace', $properties['tablespace'], array('id' => 'tablespace', 'min' => 0)), 'tablespace'); $form_container->output_row($lang->inner_border, $lang->inner_border_desc, $form->generate_numeric_field('borderwidth', $properties['borderwidth'], array('id' => 'borderwidth', 'min' => 0)), 'borderwidth');
|
$form_container->end();
$form_container = new FormContainer($lang->colors_manage);
| $form_container->end();
$form_container = new FormContainer($lang->colors_manage);
|
if(!$properties['colors'] || !is_array($properties['colors'])) { $color_setting = $lang->colors_no_color_setting;
| if(!$properties['colors'] || !is_array($properties['colors'])) { $color_setting = $lang->colors_no_color_setting;
|
Zeile 1624 | Zeile 1616 |
---|
$form_container->output_row($lang->colors_setting, $lang->colors_setting_desc, $color_setting, 'color'); $form_container->output_row($lang->colors_add, $lang->colors_add_desc, $form->generate_text_area('colors', $mybb->input['colors'], array('style' => 'width: 200px;', 'rows' => '5')));
|
$form_container->output_row($lang->colors_setting, $lang->colors_setting_desc, $color_setting, 'color'); $form_container->output_row($lang->colors_add, $lang->colors_add_desc, $form->generate_text_area('colors', $mybb->input['colors'], array('style' => 'width: 200px;', 'rows' => '5')));
|
|
|
$form_container->end();
$buttons = array(); $buttons[] = $form->generate_submit_button($lang->save_theme_properties);
|
$form_container->end();
$buttons = array(); $buttons[] = $form->generate_submit_button($lang->save_theme_properties);
|
$form->output_submit_wrapper($buttons);
| $form->output_submit_wrapper($buttons);
|
$form->end();
$page->output_footer();
| $form->end();
$page->output_footer();
|
Zeile 1690 | Zeile 1682 |
---|
if(get_extension($mybb->input['name']) != "css") { // Does not end with '.css'
|
if(get_extension($mybb->input['name']) != "css") { // Does not end with '.css'
|
$errors[] = $lang->sprintf($lang->error_missing_stylesheet_extension, $mybb->input['name']);
| $errors[] = $lang->sprintf( $lang->error_missing_stylesheet_extension, htmlspecialchars_uni($mybb->input['name']) );
|
}
if(!$errors)
| }
if(!$errors)
|
Zeile 1820 | Zeile 1815 |
---|
foreach($mybb->input as $name => $value) { if(strpos($name, "attached") !== false)
|
foreach($mybb->input as $name => $value) { if(strpos($name, "attached") !== false)
|
{
| {
|
list(, $id) = explode('_', $name); $id = (int)$id;
| list(, $id) = explode('_', $name); $id = (int)$id;
|
Zeile 1936 | Zeile 1931 |
---|
if(is_array($properties['colors'])) { $specific_colors = "<div id=\"attach_2\" class=\"attachs\">";
|
if(is_array($properties['colors'])) { $specific_colors = "<div id=\"attach_2\" class=\"attachs\">";
|
$specific_colors_option = '<dt><label style="display: block;"><input type="radio" name="attach" value="2" '.$global_checked[3].' class="attachs_check" onclick="checkAction(\'attach\');" style="vertical-align: middle;" /> '.$lang->colors_specific_color.'</label></dt><br />';
$specific_color = " <small>{$lang->colors_add_edit_desc}</small> <br /><br /> ".$form->generate_select_box('color[]', $properties['colors'], $stylesheet['colors'], array('multiple' => true, 'size' => "5\" style=\"width: 200px;"))." ";
$form_container = new FormContainer(); $form_container->output_row("", "", $specific_color); $specific_colors .= $form_container->end(true)."</div>"; }
$actions = '<script type="text/javascript"> function checkAction(id) { var checked = \'\';
$(\'.\'+id+\'s_check\').each(function(e, val) { if($(this).prop(\'checked\') == true) { checked = $(this).val(); } }); $(\'.\'+id+\'s\').each(function(e) { $(this).hide(); }); if($(\'#\'+id+\'_\'+checked)) { $(\'#\'+id+\'_\'+checked).show(); }
| $specific_colors_option = '<dt><label style="display: block;"><input type="radio" name="attach" value="2" '.$global_checked[3].' class="attachs_check" onclick="checkAction(\'attach\');" style="vertical-align: middle;" /> '.$lang->colors_specific_color.'</label></dt><br />';
$specific_color = " <small>{$lang->colors_add_edit_desc}</small> <br /><br /> ".$form->generate_select_box('color[]', $properties['colors'], $stylesheet['colors'], array('multiple' => true, 'size' => "5\" style=\"width: 200px;"))." ";
$form_container = new FormContainer(); $form_container->output_row("", "", $specific_color); $specific_colors .= $form_container->end(true)."</div>"; }
$actions = '<script type="text/javascript"> function checkAction(id) { var checked = \'\';
$(\'.\'+id+\'s_check\').each(function(e, val) { if($(this).prop(\'checked\') == true) { checked = $(this).val(); } }); $(\'.\'+id+\'s\').each(function(e) { $(this).hide(); }); if($(\'#\'+id+\'_\'+checked)) { $(\'#\'+id+\'_\'+checked).show(); }
|
} </script> <dl style="margin-top: 0; margin-bottom: 0; width: 40%;">
| } </script> <dl style="margin-top: 0; margin-bottom: 0; width: 40%;">
|
Zeile 1998 | Zeile 1993 |
---|
echo <<<EOF
|
echo <<<EOF
|
<script type="text/javascript" src="./jscripts/theme_properties.js"></script>
| <script type="text/javascript" src="./jscripts/theme_properties.js?ver=1821"></script>
|
<script type="text/javascript"> <!--- themeProperties.setup('{$count}');
| <script type="text/javascript"> <!--- themeProperties.setup('{$count}');
|
Zeile 2263 | Zeile 2258 |
---|
echo '<script type="text/javascript" src="./jscripts/themes.js?ver=1808"></script>'; echo '<script type="text/javascript">
|
echo '<script type="text/javascript" src="./jscripts/themes.js?ver=1808"></script>'; echo '<script type="text/javascript">
|
$(document).ready(function() {
| $(function() {
|
//<![CDATA[ ThemeSelector.init("./index.php?module=style-themes&action=xmlhttp_stylesheet", "./index.php?module=style-themes&action=edit_stylesheet", $("#selector"), $("#stylesheet"), "'.htmlspecialchars_uni($mybb->input['file']).'", $("#selector_form"), "'.$mybb->input['tid'].'"); lang.saving = "'.$lang->saving.'";
| //<![CDATA[ ThemeSelector.init("./index.php?module=style-themes&action=xmlhttp_stylesheet", "./index.php?module=style-themes&action=edit_stylesheet", $("#selector"), $("#stylesheet"), "'.htmlspecialchars_uni($mybb->input['file']).'", $("#selector_form"), "'.$mybb->input['tid'].'"); lang.saving = "'.$lang->saving.'";
|
Zeile 2277 | Zeile 2272 |
---|
}
if($mybb->input['action'] == "edit_stylesheet" && $mybb->input['mode'] == "advanced")
|
}
if($mybb->input['action'] == "edit_stylesheet" && $mybb->input['mode'] == "advanced")
|
{ // Fetch the theme we want to edit this stylesheet in $query = $db->simple_select("themes", "*", "tid='".$mybb->get_input('tid', MyBB::INPUT_INT)."'"); $theme = $db->fetch_array($query);
if(!$theme['tid'] || $theme['tid'] == 1) { flash_message($lang->error_invalid_theme, 'error'); admin_redirect("index.php?module=style-themes"); }
$plugins->run_hooks("admin_style_themes_edit_stylesheet_advanced");
$parent_list = make_parent_theme_list($theme['tid']); $parent_list = implode(',', $parent_list); if(!$parent_list) { $parent_list = 1; }
$query = $db->simple_select("themestylesheets", "*", "name='".$db->escape_string($mybb->input['file'])."' AND tid IN ({$parent_list})", array('order_by' => 'tid', 'order_dir' => 'desc', 'limit' => 1)); $stylesheet = $db->fetch_array($query);
// Does the theme not exist? if(!$stylesheet['sid']) { flash_message($lang->error_invalid_stylesheet, 'error'); admin_redirect("index.php?module=style-themes"); }
if($mybb->request_method == "post")
| { // Fetch the theme we want to edit this stylesheet in $query = $db->simple_select("themes", "*", "tid='".$mybb->get_input('tid', MyBB::INPUT_INT)."'"); $theme = $db->fetch_array($query);
if(!$theme['tid'] || $theme['tid'] == 1) { flash_message($lang->error_invalid_theme, 'error'); admin_redirect("index.php?module=style-themes"); }
$plugins->run_hooks("admin_style_themes_edit_stylesheet_advanced");
$parent_list = make_parent_theme_list($theme['tid']); $parent_list = implode(',', $parent_list); if(!$parent_list) { $parent_list = 1; }
$query = $db->simple_select("themestylesheets", "*", "name='".$db->escape_string($mybb->input['file'])."' AND tid IN ({$parent_list})", array('order_by' => 'tid', 'order_dir' => 'desc', 'limit' => 1)); $stylesheet = $db->fetch_array($query);
// Does the theme not exist? if(!$stylesheet['sid']) { flash_message($lang->error_invalid_stylesheet, 'error'); admin_redirect("index.php?module=style-themes"); }
if($mybb->request_method == "post")
|
{ $sid = $stylesheet['sid'];
| { $sid = $stylesheet['sid'];
|
Zeile 2366 | Zeile 2361 |
---|
<script src="./jscripts/codemirror/mode/css/css.js?ver=1813"></script> <script src="./jscripts/codemirror/addon/dialog/dialog.js?ver=1813"></script> <script src="./jscripts/codemirror/addon/search/searchcursor.js?ver=1813"></script>
|
<script src="./jscripts/codemirror/mode/css/css.js?ver=1813"></script> <script src="./jscripts/codemirror/addon/dialog/dialog.js?ver=1813"></script> <script src="./jscripts/codemirror/addon/search/searchcursor.js?ver=1813"></script>
|
<script src="./jscripts/codemirror/addon/search/search.js?ver=1813"></script>
| <script src="./jscripts/codemirror/addon/search/search.js?ver=1821"></script>
|
'; }
| '; }
|
Zeile 2642 | Zeile 2637 |
---|
<script src="./jscripts/codemirror/mode/css/css.js?ver=1813"></script> <script src="./jscripts/codemirror/addon/dialog/dialog.js?ver=1813"></script> <script src="./jscripts/codemirror/addon/search/searchcursor.js?ver=1813"></script>
|
<script src="./jscripts/codemirror/mode/css/css.js?ver=1813"></script> <script src="./jscripts/codemirror/addon/dialog/dialog.js?ver=1813"></script> <script src="./jscripts/codemirror/addon/search/searchcursor.js?ver=1813"></script>
|
<script src="./jscripts/codemirror/addon/search/search.js?ver=1813"></script>
| <script src="./jscripts/codemirror/addon/search/search.js?ver=1821"></script>
|
'; }
| '; }
|
Zeile 2906 | Zeile 2901 |
---|
}
echo '<script type="text/javascript" src="./jscripts/themes.js?ver=1808"></script>';
|
}
echo '<script type="text/javascript" src="./jscripts/themes.js?ver=1808"></script>';
|
echo '<script type="text/javascript" src="./jscripts/theme_properties.js"></script>';
| echo '<script type="text/javascript" src="./jscripts/theme_properties.js?ver=1821"></script>';
|
echo '<script type="text/javascript"> $(function() { //<![CDATA[
| echo '<script type="text/javascript"> $(function() { //<![CDATA[
|
Zeile 2984 | Zeile 2979 |
---|
$plugins->run_hooks("admin_style_themes_force_commit");
$db->update_query("users", $updated_users);
|
$plugins->run_hooks("admin_style_themes_force_commit");
$db->update_query("users", $updated_users);
|
| // The theme has to be accessible to all usergroups in order to force on all users if($theme['allowedgroups'] !== "all") { $db->update_query("themes", array("allowedgroups" => "all"), "tid='{$theme['tid']}'"); }
|
// Log admin action log_admin_action($theme['tid'], $theme['name']);
| // Log admin action log_admin_action($theme['tid'], $theme['name']);
|