Zeile 19 | Zeile 19 |
---|
{ global $mybb, $db;
|
{ global $mybb, $db;
|
require_once MYBB_ROOT."inc/class_xml.php";
$parser = new XMLParser($xml);
| $parser = create_xml_parser($xml);
|
$tree = $parser->get_tree();
if(!is_array($tree) || !is_array($tree['theme']))
| $tree = $parser->get_tree();
if(!is_array($tree) || !is_array($tree['theme']))
|
Zeile 59 | Zeile 57 |
---|
} } $css_120 .= "}\n";
|
} } $css_120 .= "}\n";
|
} }
| } }
|
if(isset($theme['themebits']) && is_array($theme['themebits'])) { $themebits = kill_tags($theme['themebits']);
| if(isset($theme['themebits']) && is_array($theme['themebits'])) { $themebits = kill_tags($theme['themebits']);
|
Zeile 102 | Zeile 100 |
---|
}
if($property == 'colors' || $property == 'disporder')
|
}
if($property == 'colors' || $property == 'disporder')
|
{
| {
|
$data = my_unserialize($value['value']);
if(!is_array($data))
| $data = my_unserialize($value['value']);
if(!is_array($data))
|
Zeile 130 | Zeile 128 |
---|
$query = $db->simple_select("themes", "tid", "name='".$db->escape_string($name)."'", array("limit" => 1)); $existingtheme = $db->fetch_array($query);
|
$query = $db->simple_select("themes", "tid", "name='".$db->escape_string($name)."'", array("limit" => 1)); $existingtheme = $db->fetch_array($query);
|
if(!empty($options['force_name_check']) && $existingtheme['tid'])
| if(!empty($options['force_name_check']) && $existingtheme)
|
{ return -3; }
|
{ return -3; }
|
else if($existingtheme['tid'])
| else if($existingtheme)
|
{ $options['tid'] = $existingtheme['tid']; }
| { $options['tid'] = $existingtheme['tid']; }
|
Zeile 146 | Zeile 144 |
---|
// Do we have any templates to insert? if(!empty($theme['templates']['template']) && empty($options['no_templates']))
|
// Do we have any templates to insert? if(!empty($theme['templates']['template']) && empty($options['no_templates']))
|
{ if($options['templateset']) { $sid = $options['templateset']; } else { $sid = $db->insert_query("templatesets", array('title' => $db->escape_string($name)." Templates")); }
| {
|
$templates = $theme['templates']['template']; if(is_array($templates)) {
| $templates = $theme['templates']['template']; if(is_array($templates)) {
|
Zeile 166 | Zeile 155 |
---|
} }
|
} }
|
| // Security check
|
$security_check = false;
|
$security_check = false;
|
$templatecache = array();
| |
foreach($templates as $template) { if(check_template($template['value']))
| foreach($templates as $template) { if(check_template($template['value']))
|
Zeile 175 | Zeile 164 |
---|
$security_check = true; break; }
|
$security_check = true; break; }
|
| }
if($security_check == true) { return -4; }
if(!empty($options['templateset'])) { $sid = (int)$options['templateset']; } else { $sid = $db->insert_query("templatesets", array('title' => $db->escape_string($name)." Templates")); }
|
|
|
| $templatecache = array(); foreach($templates as $template) {
|
$templatecache[] = array( "title" => $db->escape_string($template['attributes']['name']), "template" => $db->escape_string($template['value']),
| $templatecache[] = array( "title" => $db->escape_string($template['attributes']['name']), "template" => $db->escape_string($template['value']),
|
Zeile 183 | Zeile 190 |
---|
"version" => $db->escape_string($template['attributes']['version']), "dateline" => TIME_NOW );
|
"version" => $db->escape_string($template['attributes']['version']), "dateline" => TIME_NOW );
|
}
if($security_check == true) { return -4;
| |
}
foreach($templatecache as $template)
| }
foreach($templatecache as $template)
|
Zeile 240 | Zeile 242 |
---|
{ $inherited_stylesheets = my_unserialize($db->fetch_field($query, "stylesheets"));
|
{ $inherited_stylesheets = my_unserialize($db->fetch_field($query, "stylesheets"));
|
if(is_array($inherited_stylesheets['inherited']))
| if(isset($inherited_stylesheets['inherited']) && is_array($inherited_stylesheets['inherited']))
|
{ $loop = 1; foreach($inherited_stylesheets['inherited'] as $action => $stylesheets)
| { $loop = 1; foreach($inherited_stylesheets['inherited'] as $action => $stylesheets)
|
Zeile 262 | Zeile 264 |
---|
$loop = 1; foreach($theme['stylesheets']['stylesheet'] as $stylesheet) {
|
$loop = 1; foreach($theme['stylesheets']['stylesheet'] as $stylesheet) {
|
| $stylesheet['attributes']['name'] = my_substr($stylesheet['attributes']['name'], 0, 30);
|
if(substr($stylesheet['attributes']['name'], -4) != ".css")
|
if(substr($stylesheet['attributes']['name'], -4) != ".css")
|
{
| {
|
continue;
|
continue;
|
}
| }
|
if(empty($stylesheet['attributes']['lastmodified']))
|
if(empty($stylesheet['attributes']['lastmodified']))
|
{
| {
|
$stylesheet['attributes']['lastmodified'] = TIME_NOW;
|
$stylesheet['attributes']['lastmodified'] = TIME_NOW;
|
}
| }
|
if(empty($stylesheet['attributes']['disporder'])) { $stylesheet['attributes']['disporder'] = $loop;
|
if(empty($stylesheet['attributes']['disporder'])) { $stylesheet['attributes']['disporder'] = $loop;
|
}
| }
|
if(empty($stylesheet['attributes']['attachedto'])) {
| if(empty($stylesheet['attributes']['attachedto'])) {
|
Zeile 304 | Zeile 308 |
---|
if(!$attachedto) { $attachedto = "global";
|
if(!$attachedto) { $attachedto = "global";
|
}
| }
|
// private.php?compose,folders|usercp.php,global|global $attachedto = explode("|", $attachedto);
| // private.php?compose,folders|usercp.php,global|global $attachedto = explode("|", $attachedto);
|
Zeile 330 | Zeile 334 |
---|
"stylesheets" => $db->escape_string(my_serialize($theme_stylesheets)) );
|
"stylesheets" => $db->escape_string(my_serialize($theme_stylesheets)) );
|
if(is_array($properties['disporder'])) { asort($properties['disporder'], SORT_NUMERIC);
// Because inherited stylesheets can mess this up $loop = 1; $orders = array(); foreach($properties['disporder'] as $filename => $order) { $orders[$filename] = $loop; ++$loop; }
$properties['disporder'] = $orders; $updated_theme['properties'] = $db->escape_string(my_serialize($properties)); }
$db->update_query("themes", $updated_theme, "tid='{$theme_id}'"); }
update_theme_stylesheet_list($theme_id);
| $db->update_query("themes", $updated_theme, "tid='{$theme_id}'"); }
update_theme_stylesheet_list($theme_id);
|
// And done? return $theme_id;
| // And done? return $theme_id;
|
Zeile 391 | Zeile 378 |
---|
$filename = basename($filename); $tid = (int) $tid; $theme_directory = "cache/themes/theme{$tid}";
|
$filename = basename($filename); $tid = (int) $tid; $theme_directory = "cache/themes/theme{$tid}";
|
| if(substr($filename, -4) != ".css") { return false; }
|
// If we're in safe mode save to the main theme folder by default if($mybb->safemode)
| // If we're in safe mode save to the main theme folder by default if($mybb->safemode)
|
Zeile 420 | Zeile 412 |
---|
"theme" => $theme_directory ); $stylesheet = parse_theme_variables($stylesheet, $theme_vars);
|
"theme" => $theme_directory ); $stylesheet = parse_theme_variables($stylesheet, $theme_vars);
|
$stylesheet = preg_replace_callback("#url\((\"|'|)(.*)\\1\)#", create_function('$matches', 'return fix_css_urls($matches[2]);'), $stylesheet);
| $stylesheet = preg_replace_callback("#url\((\"|'|)([^\"'\s]*?)\\1\)#", 'fix_css_urls_callback', $stylesheet);
|
$fp = @fopen(MYBB_ROOT . "{$theme_directory}/{$filename}", "wb"); if(!$fp)
| $fp = @fopen(MYBB_ROOT . "{$theme_directory}/{$filename}", "wb"); if(!$fp)
|
Zeile 511 | Zeile 503 |
---|
}
/**
|
}
/**
|
| * @deprecated
|
* @param string $url * * @return string
| * @param string $url * * @return string
|
Zeile 528 | Zeile 521 |
---|
}
/**
|
}
/**
|
| * @param array $matches Matches. * * @return string */ function fix_css_urls_callback($matches) { return fix_css_urls($matches[2]); }
/** * @deprecated
|
* @param string $url * * @return string
| * @param string $url * * @return string
|
Zeile 536 | Zeile 540 |
---|
{ return str_replace("../../../", "", $url); }
|
{ return str_replace("../../../", "", $url); }
|
|
|
/** * Build a theme based on the specified parameters. *
| /** * Build a theme based on the specified parameters. *
|
Zeile 565 | Zeile 569 |
---|
{ $query = $db->simple_select("themes", "*", "tid='".(int)$parent."'"); $parent_theme = $db->fetch_array($query);
|
{ $query = $db->simple_select("themes", "*", "tid='".(int)$parent."'"); $parent_theme = $db->fetch_array($query);
|
if(count($properties) == 0 || !is_array($properties))
| if(!is_array($properties) || count($properties) == 0)
|
{ $parent_properties = my_unserialize($parent_theme['properties']); if(!empty($parent_properties))
| { $parent_properties = my_unserialize($parent_theme['properties']); if(!empty($parent_properties))
|
Zeile 573 | Zeile 577 |
---|
foreach($parent_properties as $property => $value) { if($property == "inherited")
|
foreach($parent_properties as $property => $value) { if($property == "inherited")
|
{
| {
|
continue; }
| continue; }
|
Zeile 599 | Zeile 603 |
---|
if($location == "inherited") { continue;
|
if($location == "inherited") { continue;
|
}
| }
|
foreach($value as $action => $sheets) { foreach($sheets as $stylesheet)
| foreach($value as $action => $sheets) { foreach($sheets as $stylesheet)
|
Zeile 628 | Zeile 632 |
---|
); $properties['logo'] = parse_theme_variables($properties['logo'], $theme_vars); }
|
); $properties['logo'] = parse_theme_variables($properties['logo'], $theme_vars); }
|
| $updated_theme = array();
|
if(!empty($stylesheets)) { $updated_theme['stylesheets'] = $db->escape_string(my_serialize($stylesheets));
| if(!empty($stylesheets)) { $updated_theme['stylesheets'] = $db->escape_string(my_serialize($stylesheets));
|
Zeile 791 | Zeile 797 |
---|
*/ function parse_css_properties($values) {
|
*/ function parse_css_properties($values) {
|
$css_bits = array();
| $css_bits = array( 'extra' => null, );
|
if(!$values) {
| if(!$values) {
|
Zeile 836 | Zeile 844 |
---|
* @return string The altered CSS. */ function insert_into_css($new_css, $selector="", $css="", $class_id="")
|
* @return string The altered CSS. */ function insert_into_css($new_css, $selector="", $css="", $class_id="")
|
{
| {
|
$new_css = str_replace(array("\r\n", "\n", "\r"), "\n", $new_css);
|
$new_css = str_replace(array("\r\n", "\n", "\r"), "\n", $new_css);
|
|
|
$generated_css = '';
// Build the new CSS properties list $new_css = explode("\n", $new_css); foreach($new_css as $css_line)
|
$generated_css = '';
// Build the new CSS properties list $new_css = explode("\n", $new_css); foreach($new_css as $css_line)
|
{
| {
|
$generated_css .= "\t".trim($css_line)."\n";
|
$generated_css .= "\t".trim($css_line)."\n";
|
}
| }
|
$parsed_css = array();
// Parse out the CSS
| $parsed_css = array();
// Parse out the CSS
|
Zeile 859 | Zeile 867 |
---|
if(!$class_id) { $class_id = $parsed_css[$selector]['class_name'];
|
if(!$class_id) { $class_id = $parsed_css[$selector]['class_name'];
|
}
| }
|
// The specified class ID cannot be found, add CSS to end of file if(!$css || !$parsed_css[$selector])
| // The specified class ID cannot be found, add CSS to end of file if(!$css || !$parsed_css[$selector])
|
Zeile 928 | Zeile 936 |
---|
$new_stylesheet = array(); foreach($stylesheet as $key => $value)
|
$new_stylesheet = array(); foreach($stylesheet as $key => $value)
|
{
| {
|
if(!is_numeric($key)) { $new_stylesheet[$db->escape_string($key)] = $db->escape_string($value);
| if(!is_numeric($key)) { $new_stylesheet[$db->escape_string($key)] = $db->escape_string($value);
|
Zeile 975 | Zeile 983 |
---|
}
$stylesheets[$stylesheet['name']] = $stylesheet;
|
}
$stylesheets[$stylesheet['name']] = $stylesheet;
|
} }
| } }
|
$theme_stylesheets = array();
| $theme_stylesheets = array();
|
Zeile 987 | Zeile 995 |
---|
foreach($parent_list as $theme_id) {
|
foreach($parent_list as $theme_id) {
|
if($mybb->settings['usecdn'] && !empty($mybb->settings['cdnpath']))
| if(!empty($mybb->settings['usecdn']) && !empty($mybb->settings['cdnpath']))
|
{ $cdnpath = rtrim($mybb->settings['cdnpath'], '/\\').'/'; if(file_exists($cdnpath."cache/themes/theme{$theme_id}/{$stylesheet['name']}") && filemtime(
| { $cdnpath = rtrim($mybb->settings['cdnpath'], '/\\').'/'; if(file_exists($cdnpath."cache/themes/theme{$theme_id}/{$stylesheet['name']}") && filemtime(
|
Zeile 1011 | Zeile 1019 |
---|
} } }
|
} } }
|
|
|
if(is_object($plugins))
|
if(is_object($plugins))
|
{
| {
|
$plugins->run_hooks('update_theme_stylesheet_list_set_css_url', $css_url);
|
$plugins->run_hooks('update_theme_stylesheet_list_set_css_url', $css_url);
|
}
| }
|
$attachedto = $stylesheet['attachedto']; if(!$attachedto)
| $attachedto = $stylesheet['attachedto']; if(!$attachedto)
|
Zeile 1025 | Zeile 1033 |
---|
// private.php?compose,folders|usercp.php,global|global $attachedto = explode("|", $attachedto); foreach($attachedto as $attached_file)
|
// private.php?compose,folders|usercp.php,global|global $attachedto = explode("|", $attachedto); foreach($attachedto as $attached_file)
|
{
| {
|
$attached_actions = array(); if(strpos($attached_file, '?') !== false) { $attached_file = explode('?', $attached_file); $attached_actions = explode(",", $attached_file[1]); $attached_file = $attached_file[0];
|
$attached_actions = array(); if(strpos($attached_file, '?') !== false) { $attached_file = explode('?', $attached_file); $attached_actions = explode(",", $attached_file[1]); $attached_file = $attached_file[0];
|
}
| }
|
if(count($attached_actions) == 0)
|
if(count($attached_actions) == 0)
|
{
| {
|
$attached_actions = array("global");
|
$attached_actions = array("global");
|
}
| }
|
foreach($attached_actions as $action) { $theme_stylesheets[$attached_file][$action][] = $css_url;
| foreach($attached_actions as $action) { $theme_stylesheets[$attached_file][$action][] = $css_url;
|
Zeile 1047 | Zeile 1055 |
---|
{ $theme_stylesheets['inherited']["{$attached_file}_{$action}"][$css_url] = $stylesheet['inherited']; }
|
{ $theme_stylesheets['inherited']["{$attached_file}_{$action}"][$css_url] = $stylesheet['inherited']; }
|
} } }
| } } }
|
// Now we have our list of built stylesheets, save them $updated_theme = array( "stylesheets" => $db->escape_string(my_serialize($theme_stylesheets)) );
|
// Now we have our list of built stylesheets, save them $updated_theme = array( "stylesheets" => $db->escape_string(my_serialize($theme_stylesheets)) );
|
|
|
// Do we have a theme present? If so, update the stylesheet display orders if($update_disporders) { if(!is_array($theme) || !$theme)
|
// Do we have a theme present? If so, update the stylesheet display orders if($update_disporders) { if(!is_array($theme) || !$theme)
|
{
| {
|
$theme_cache = cache_themes(); $theme = $theme_cache[$tid];
|
$theme_cache = cache_themes(); $theme = $theme_cache[$tid];
|
}
| }
|
$orders = $orphaned_stylesheets = array(); $properties = $theme['properties'];
| $orders = $orphaned_stylesheets = array(); $properties = $theme['properties'];
|
Zeile 1072 | Zeile 1080 |
---|
{ $properties = my_unserialize($theme['properties']); }
|
{ $properties = my_unserialize($theme['properties']); }
|
|
|
$max_disporder = 0;
foreach($stylesheets as $stylesheet)
| $max_disporder = 0;
foreach($stylesheets as $stylesheet)
|
Zeile 1082 | Zeile 1090 |
---|
$orphaned_stylesheets[] = $stylesheet['name']; continue; }
|
$orphaned_stylesheets[] = $stylesheet['name']; continue; }
|
|
|
if($properties['disporder'][$stylesheet['name']] > $max_disporder) { $max_disporder = $properties['disporder'][$stylesheet['name']];
| if($properties['disporder'][$stylesheet['name']] > $max_disporder) { $max_disporder = $properties['disporder'][$stylesheet['name']];
|
Zeile 1110 | Zeile 1118 |
---|
$db->update_query("themes", $updated_theme, "tid = '{$tid}'");
// Do we have any children themes that need updating too?
|
$db->update_query("themes", $updated_theme, "tid = '{$tid}'");
// Do we have any children themes that need updating too?
|
if(count($child_list) > 0)
| if(is_array($child_list) && count($child_list) > 0)
|
{ foreach($child_list as $id) {
| { foreach($child_list as $id) {
|
Zeile 1122 | Zeile 1130 |
---|
return true; }
|
return true; }
|
|
|
/** * @param int $tid *
| /** * @param int $tid *
|
Zeile 1142 | Zeile 1150 |
---|
{ continue; }
|
{ continue; }
|
|
|
$themes_by_parent[$theme['tid']][$theme['pid']] = $theme; }
|
$themes_by_parent[$theme['tid']][$theme['pid']] = $theme; }
|
}
| }
|
if(!isset($themes_by_parent[$tid]) || !is_array($themes_by_parent[$tid])) { return false;
| if(!isset($themes_by_parent[$tid]) || !is_array($themes_by_parent[$tid])) { return false;
|
Zeile 1154 | Zeile 1162 |
---|
reset($themes_by_parent); reset($themes_by_parent[$tid]);
|
reset($themes_by_parent); reset($themes_by_parent[$tid]);
|
|
|
$themes = array();
foreach($themes_by_parent[$tid] as $key => $theme)
| $themes = array();
foreach($themes_by_parent[$tid] as $key => $theme)
|
Zeile 1165 | Zeile 1173 |
---|
if(is_array($parents)) { $themes = array_merge($themes, $parents);
|
if(is_array($parents)) { $themes = array_merge($themes, $parents);
|
} }
return $themes; }
| } }
return $themes; }
|
/** * @param int $tid
| /** * @param int $tid
|
Zeile 1192 | Zeile 1200 |
---|
}
$themes_by_child[$theme['pid']][$theme['tid']] = $theme;
|
}
$themes_by_child[$theme['pid']][$theme['tid']] = $theme;
|
} }
| } }
|
if(!isset($themes_by_child[$tid]) || !is_array($themes_by_child[$tid])) { return null;
|
if(!isset($themes_by_child[$tid]) || !is_array($themes_by_child[$tid])) { return null;
|
}
$themes = array();
| }
$themes = array();
|
foreach($themes_by_child[$tid] as $theme) {
| foreach($themes_by_child[$tid] as $theme) {
|
Zeile 1214 | Zeile 1222 |
---|
}
return $themes;
|
}
return $themes;
|
}
/**
| }
/**
|
* @return array */ function cache_themes()
| * @return array */ function cache_themes()
|
Zeile 1228 | Zeile 1236 |
---|
$query = $db->simple_select("themes", "*", "", array('order_by' => "pid, name")); while($theme = $db->fetch_array($query)) {
|
$query = $db->simple_select("themes", "*", "", array('order_by' => "pid, name")); while($theme = $db->fetch_array($query)) {
|
| $theme['users'] = 0;
|
$theme['properties'] = my_unserialize($theme['properties']); $theme['stylesheets'] = my_unserialize($theme['stylesheets']); $theme_cache[$theme['tid']] = $theme;
| $theme['properties'] = my_unserialize($theme['properties']); $theme['stylesheets'] = my_unserialize($theme['stylesheets']); $theme_cache[$theme['tid']] = $theme;
|
Zeile 1270 | Zeile 1279 |
---|
$user_themes['style'] = $themes['default']; }
|
$user_themes['style'] = $themes['default']; }
|
if($themes[$user_themes['style']]['users'] > 0)
| if(isset($themes[$user_themes['style']]['users']) && $themes[$user_themes['style']]['users'] > 0)
|
{ $themes[$user_themes['style']]['users'] += (int)$user_themes['users']; } else { $themes[$user_themes['style']]['users'] = (int)$user_themes['users'];
|
{ $themes[$user_themes['style']]['users'] += (int)$user_themes['users']; } else { $themes[$user_themes['style']]['users'] = (int)$user_themes['users'];
|
} }
// Restrucure the theme array to something we can "loop-de-loop" with foreach($themes as $key => $theme) { if($key == "default") { continue; }
$theme_cache[$theme['pid']][$theme['tid']] = $theme;
| } }
// Restrucure the theme array to something we can "loop-de-loop" with foreach($themes as $key => $theme) { if($key == "default") { continue; }
$theme_cache[$theme['pid']][$theme['tid']] = $theme;
|
} $theme_cache['num_themes'] = count($themes); unset($themes);
|
} $theme_cache['num_themes'] = count($themes); unset($themes);
|
}
if(!is_array($theme_cache[$parent])) {
| }
if(!isset($theme_cache[$parent]) || !is_array($theme_cache[$parent])) {
|
return; }
|
return; }
|
|
|
foreach($theme_cache[$parent] as $theme) { $popup = new PopupMenu("theme_{$theme['tid']}", $lang->options);
|
foreach($theme_cache[$parent] as $theme) { $popup = new PopupMenu("theme_{$theme['tid']}", $lang->options);
|
| $set_default = '';
|
if($theme['tid'] > 1) { $popup->add_item($lang->edit_theme, "index.php?module=style-themes&action=edit&tid={$theme['tid']}");
| if($theme['tid'] > 1) { $popup->add_item($lang->edit_theme, "index.php?module=style-themes&action=edit&tid={$theme['tid']}");
|
Zeile 1311 | Zeile 1321 |
---|
if($theme_cache['num_themes'] > 2) { $popup->add_item($lang->delete_theme, "index.php?module=style-themes&action=delete&tid={$theme['tid']}&my_post_key={$mybb->post_code}", "return AdminCP.deleteConfirmation(this, '{$lang->confirm_theme_deletion}')");
|
if($theme_cache['num_themes'] > 2) { $popup->add_item($lang->delete_theme, "index.php?module=style-themes&action=delete&tid={$theme['tid']}&my_post_key={$mybb->post_code}", "return AdminCP.deleteConfirmation(this, '{$lang->confirm_theme_deletion}')");
|
}
| }
|
if($theme['def'] != 1) { $popup->add_item($lang->set_as_default, "index.php?module=style-themes&action=set_default&tid={$theme['tid']}&my_post_key={$mybb->post_code}");
| if($theme['def'] != 1) { $popup->add_item($lang->set_as_default, "index.php?module=style-themes&action=set_default&tid={$theme['tid']}&my_post_key={$mybb->post_code}");
|
Zeile 1323 | Zeile 1333 |
---|
$set_default = "<img src=\"styles/{$page->style}/images/icons/default.png\" alt=\"{$lang->default_theme}\" style=\"vertical-align: middle;\" title=\"{$lang->default_theme}\" />"; } $popup->add_item($lang->force_on_users, "index.php?module=style-themes&action=force&tid={$theme['tid']}&my_post_key={$mybb->post_code}", "return AdminCP.deleteConfirmation(this, '{$lang->confirm_theme_forced}')");
|
$set_default = "<img src=\"styles/{$page->style}/images/icons/default.png\" alt=\"{$lang->default_theme}\" style=\"vertical-align: middle;\" title=\"{$lang->default_theme}\" />"; } $popup->add_item($lang->force_on_users, "index.php?module=style-themes&action=force&tid={$theme['tid']}&my_post_key={$mybb->post_code}", "return AdminCP.deleteConfirmation(this, '{$lang->confirm_theme_forced}')");
|
| $set_default = "<div class=\"float_right\">{$set_default}</div>";
|
} $popup->add_item($lang->export_theme, "index.php?module=style-themes&action=export&tid={$theme['tid']}"); $popup->add_item($lang->duplicate_theme, "index.php?module=style-themes&action=duplicate&tid={$theme['tid']}");
|
} $popup->add_item($lang->export_theme, "index.php?module=style-themes&action=export&tid={$theme['tid']}"); $popup->add_item($lang->duplicate_theme, "index.php?module=style-themes&action=duplicate&tid={$theme['tid']}");
|
$table->construct_cell("<div class=\"float_right\">{$set_default}</div><div style=\"margin-left: {$padding}px;\"><strong>{$theme['name']}</strong></div>");
| $table->construct_cell("{$set_default}<div style=\"margin-left: {$padding}px;\"><strong>{$theme['name']}</strong></div>");
|
$table->construct_cell(my_number_format($theme['users']), array("class" => "align_center")); $table->construct_cell($popup->fetch(), array("class" => "align_center")); $table->construct_row();
| $table->construct_cell(my_number_format($theme['users']), array("class" => "align_center")); $table->construct_cell($popup->fetch(), array("class" => "align_center")); $table->construct_row();
|
Zeile 1359 | Zeile 1370 |
---|
if($key == "default") { continue;
|
if($key == "default") { continue;
|
}
| }
|
$theme_cache[$theme['pid']][$theme['tid']] = $theme; } unset($theme); }
|
$theme_cache[$theme['pid']][$theme['tid']] = $theme; } unset($theme); }
|
if(!is_array($theme_cache[$parent]) || $ignoretid === $parent)
| if(!isset($theme_cache[$parent]) || !is_array($theme_cache[$parent]) || $ignoretid === $parent)
|
{ return null; }
| { return null; }
|
Zeile 1420 | Zeile 1431 |
---|
foreach($style as $stylesheet2) { $stylesheets[$stylesheet2]['applied_to'][$file][] = $action;
|
foreach($style as $stylesheet2) { $stylesheets[$stylesheet2]['applied_to'][$file][] = $action;
|
if(is_array($file_stylesheets['inherited'][$file."_".$action]) && in_array($stylesheet2, array_keys($file_stylesheets['inherited'][$file."_".$action])))
| if(isset($file_stylesheets['inherited'][$file."_".$action]) && is_array($file_stylesheets['inherited'][$file."_".$action]) && in_array($stylesheet2, array_keys($file_stylesheets['inherited'][$file."_".$action])))
|
{ $stylesheets[$stylesheet2]['inherited'] = $file_stylesheets['inherited'][$file."_".$action]; foreach($file_stylesheets['inherited'][$file."_".$action] as $value)
| { $stylesheets[$stylesheet2]['inherited'] = $file_stylesheets['inherited'][$file."_".$action]; foreach($file_stylesheets['inherited'][$file."_".$action] as $value)
|
Zeile 1433 | Zeile 1444 |
---|
}
foreach($stylesheets as $file => $stylesheet2)
|
}
foreach($stylesheets as $file => $stylesheet2)
|
{ if(is_array($stylesheet2['inherited']))
| { if(isset($stylesheet2['inherited']) && is_array($stylesheet2['inherited']))
|
{ foreach($stylesheet2['inherited'] as $inherited_file => $tid) {
| { foreach($stylesheet2['inherited'] as $inherited_file => $tid) {
|
Zeile 1457 | Zeile 1468 |
---|
*/ function upgrade_css_120_to_140($css) {
|
*/ function upgrade_css_120_to_140($css) {
|
| global $mybb;
|
// Update our CSS to the new stuff in 1.4 $parsed_css = css_to_array($css);
| // Update our CSS to the new stuff in 1.4 $parsed_css = css_to_array($css);
|
Zeile 1551 | Zeile 1563 |
---|
foreach($to_add as $class_id => $array) {
|
foreach($to_add as $class_id => $array) {
|
if($already_parsed[$class_id])
| if(isset($already_parsed[$class_id]))
|
{ $already_parsed[$class_id]++; $class_id .= "_".$already_parsed[$class_id];
| { $already_parsed[$class_id]++; $class_id .= "_".$already_parsed[$class_id];
|