first commit
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
<?php echo object_st_admin_checkbox_tag($theme, 'getActive', array (
|
||||
'control_name' => 'theme[active]',
|
||||
'disabled' => $theme->getActive()
|
||||
)); ?>
|
||||
|
||||
<?php if ($theme->getActive()): ?>
|
||||
<?php echo input_hidden_tag('theme[active]', true); ?>
|
||||
<?php endif; ?>
|
||||
@@ -0,0 +1,7 @@
|
||||
<?php if (null === $base_themes): ?>
|
||||
<?php echo select_tag('theme[base_theme_list]', array('' => __('Brak')), array('disabled' => true)); ?>
|
||||
<?php else: ?>
|
||||
<?php echo select_tag('theme[base_theme_list]', options_for_select(_get_options_from_objects($base_themes), $selected, array('include_custom' => __('Brak')))); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
<?php use_helper('stThemeBackend') ?>
|
||||
|
||||
<?php echo st_theme_upload_image_tag('basket', $theme_config, $theme_config->getBasketImage());
|
||||
@@ -0,0 +1,10 @@
|
||||
<?php echo input_file_tag('theme_config[bg_banner]') ?>
|
||||
<?php echo __('powielanie') ?>:
|
||||
<?php echo select_tag('theme_config[bg_banner_repeat]', options_for_select(
|
||||
array('no-repeat' => __('brak'),
|
||||
'repeat-x' => __('powiel w poziomie'),
|
||||
'repeat-y' => __('powiel w pionie'),
|
||||
'repeat' => __('powiel w pionie i poziomie')
|
||||
),
|
||||
array($theme_config->getBgBannerRepeat())
|
||||
)) ?>
|
||||
@@ -0,0 +1,12 @@
|
||||
<?php echo input_file_tag('theme_config[css][body][background-image]') ?>
|
||||
<?php echo __('powielanie') ?>:
|
||||
<?php
|
||||
echo select_tag('theme_config[css][body][background-repeat]', options_for_select(array(
|
||||
'no-repeat' => __('brak'),
|
||||
'repeat-x' => __('powiel w poziomie'),
|
||||
'repeat-y' => __('powiel w pionie'),
|
||||
'repeat' => __('powiel w pionie i poziomie')
|
||||
),
|
||||
$theme_config->getBodyCss('background-repeat')))
|
||||
?>
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
<form action="<?php echo st_url_for('stThemeBackend/colorEdit?id='.$theme_config->getId()) ?>" enctype="multipart/form-data" method="post" name="sf_admin_edit_form" id="sf_admin_edit_form" class="admin_form">
|
||||
<fieldset>
|
||||
<h2><?php echo __('Paleta kolorów') ?></h2>
|
||||
<div class="content">
|
||||
<?php st_theme_generate_editor_fields(array('_less', 'palette'), $editor_config, $theme_config) ?>
|
||||
</div>
|
||||
</fieldset>
|
||||
<fieldset>
|
||||
<h2><?php echo __('Kolory') ?></h2>
|
||||
<div class="content">
|
||||
<?php st_theme_generate_editor_fields(array('_less', 'colors'), $editor_config, $theme_config) ?>
|
||||
</div>
|
||||
</fieldset>
|
||||
<?php st_include_partial('stThemeBackend/editor_edit_actions', array('theme_config' => $theme_config, 'type' => 'color')) ?>
|
||||
</form>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
// auto-generated by sfPropelAdmin
|
||||
// date: 2019/10/21 13:19:15
|
||||
?>
|
||||
<?php if (SF_ENVIRONMENT == 'dev'): ?>
|
||||
<?php echo st_get_admin_actions_head('style="margin-top: 10px;"') ?>
|
||||
<?php echo st_get_admin_action('create', __('Dodaj', null, 'stAdminGeneratorPlugin'), 'stThemeBackend/contentCreate?theme_id='.$forward_parameters['theme_id'], array("name" => "create",)) ?>
|
||||
<?php echo st_get_admin_actions_foot() ?>
|
||||
<?php endif ?>
|
||||
@@ -0,0 +1,59 @@
|
||||
<?php
|
||||
$c = new Criteria();
|
||||
$c->add(ThemePeer::IS_SYSTEM_DEFAULT, true);
|
||||
$c->add(ThemePeer::IS_HIDDEN, false);
|
||||
$c->addAscendingOrderByColumn(ThemePeer::THEME);
|
||||
$options = array();
|
||||
|
||||
$default = null;
|
||||
|
||||
foreach (ThemePeer::doSelect($c) as $current)
|
||||
{
|
||||
if ($current->getVersion() < 3 || $current->getTheme() == 'default2') continue;
|
||||
$options[$current->getId()] = $current->getTheme();
|
||||
if ($current->getTheme() == 'argentorwd')
|
||||
{
|
||||
$default = $current->getId();
|
||||
}
|
||||
}
|
||||
?>
|
||||
<?php if ($theme->isNew()):
|
||||
$c = new Criteria();
|
||||
$c->add(ThemePeer::IS_SYSTEM_DEFAULT, true);
|
||||
$c->add(ThemePeer::IS_HIDDEN, false);
|
||||
$c->addAscendingOrderByColumn(ThemePeer::THEME);
|
||||
$options = array();
|
||||
|
||||
$default = null;
|
||||
|
||||
foreach (ThemePeer::doSelect($c) as $current)
|
||||
{
|
||||
if ($current->getVersion() < 3 || $current->getTheme() == 'default2') continue;
|
||||
$options[$current->getId()] = $current->getTheme();
|
||||
if ($current->getTheme() == 'argentorwd')
|
||||
{
|
||||
$default = $current->getId();
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
<label for="theme_theme">
|
||||
<?php echo __('Utwórz temat na podstawie', null, 'stThemeBackend');?>
|
||||
</label>
|
||||
<div class="field<?php if ($sf_request->hasError('theme{copy_theme}')):?> form-error<?php endif;?>">
|
||||
<?php if ($sf_request->hasError('theme{copy_theme}')):?>
|
||||
<?php echo form_error('theme{copy_theme}', array('class' => 'form-error-msg'));?>
|
||||
<?php endif;?>
|
||||
<?php echo select_tag('theme[copy_theme]', options_for_select($options, $default));?>
|
||||
<div class="clr"></div>
|
||||
</div>
|
||||
|
||||
<?php elseif ($theme->hasBaseTheme()): ?>
|
||||
<label>
|
||||
<?php echo __('Temat bazowy', null, 'stThemeBackend'); ?>
|
||||
</label>
|
||||
<div class="field">
|
||||
<input type="text" size="50" value="<?php echo implode(' / ', $theme->getBaseThemes()) ?>" disabled>
|
||||
|
||||
</div>
|
||||
<?php endif ?>
|
||||
@@ -0,0 +1,9 @@
|
||||
<div style="text-align: left">
|
||||
<?php if ($theme->getVersion() < 2): ?>
|
||||
<?php if ($theme->getActive()): ?>
|
||||
<?php echo st_external_link_to(__('edycja wyglądu'), 'http://'.stSoteshop::getServerName().'/frontend_edit.php?lang='.stLanguage::getShortcut()); ?>
|
||||
<?php endif; ?>
|
||||
<?php else: ?>
|
||||
<a class="st_admin_external_link" target="_blank" href="http://<?php echo $sf_request->getHost() ?>/frontend_theme.php?theme=<?php echo $theme->getName() ?>&lang=<?php echo stLanguage::getShortcut() ?>"><?php echo __('podgląd') ?></a>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
@@ -0,0 +1,18 @@
|
||||
<div id="edit_actions">
|
||||
<?php if ($theme_config->hasType($type)): ?>
|
||||
<?php echo st_get_admin_actions_head(array('style' => 'float: left; margin-right: 5px')) ?>
|
||||
<?php echo st_get_admin_action('refresh', __('Przywróć domyślną konfigurację'), 'stThemeBackend/restore?id='.$theme_config->getId().'&type='.$type, array('name' => 'restore', 'confirm' => __('Chcesz przywrocić domyślną konfigurację. Jesteś pewien?'))) ?>
|
||||
</ul>
|
||||
<?php endif; ?>
|
||||
<?php echo st_get_admin_actions_head(array('style' => 'float: right')) ?>
|
||||
<?php echo st_get_admin_action('save', __('Zapisz'), null, array('name' => 'save')) ?>
|
||||
<?php echo st_get_admin_action('preview', __('Podgląd'), null, array('name' => 'preview_save')) ?>
|
||||
<?php echo st_get_admin_action('save', __('Zapisz i zastosuj'), null, array('name' => 'save_and_apply', 'confirm' => __('Twoje zmiany będą widoczne na stronie sklepu. Jesteś pewien?'))) ?>
|
||||
<?php echo st_get_admin_actions_foot() ?>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
jQuery(function($) {
|
||||
$('#edit_actions').stickyBox();
|
||||
});
|
||||
</script>
|
||||
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
// auto-generated by sfPropelAdmin
|
||||
// date: 2011/08/16 12:44:35
|
||||
?>
|
||||
<?php if ($sf_request->hasErrors()): ?>
|
||||
<div class="form-errors">
|
||||
<h2><?php echo __('Popraw dane w formularzu.', array(), 'stAdminGeneratorPlugin') ?></h2>
|
||||
<dl>
|
||||
<?php foreach ($sf_request->getErrorNames() as $name): if (!isset($labels[$name])) continue ?>
|
||||
<dt><?php echo __($labels[$name]) ?></dt>
|
||||
<dd><?php echo $sf_request->getError($name) ?></dd>
|
||||
<?php endforeach; ?>
|
||||
</dl>
|
||||
</div>
|
||||
<?php elseif ($sf_flash->has('notice')): ?>
|
||||
<div class="save-ok">
|
||||
<h2><?php echo $sf_flash->get('notice') ?></h2>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php if ($sf_flash->has('warning')): ?>
|
||||
<div class="form-errors">
|
||||
<h2><?php echo __($sf_flash->get('warning')) ?></h2>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
<form action="<?php echo url_for('stThemeBackend/graphicSave?id='.$theme_config->getId()) ?>" enctype="multipart/form-data" method="post" name="sf_admin_edit_form" id="sf_admin_edit_form" class="admin_form">
|
||||
<?php foreach ($editor_config->getGraphicCategories() as $index => $category): if ($category == '_less' || !$editor_config->getGraphicCategoryLabel($category)) continue; ?>
|
||||
<fieldset id="st_fieldset_<?php echo $category ?>">
|
||||
<h2><?php echo __($editor_config->getGraphicCategoryLabel($category)) ?></h2>
|
||||
<div class="content">
|
||||
<?php st_theme_generate_editor_fields($category, $editor_config, $theme_config) ?>
|
||||
</div>
|
||||
</fieldset>
|
||||
<?php endforeach ?>
|
||||
<?php st_include_partial('stThemeBackend/editor_edit_actions', array('theme_config' => $theme_config, 'type' => 'graphic')) ?>
|
||||
</form>
|
||||
<script type="text/javascript">
|
||||
jQuery(function($) {
|
||||
$(document).ready(function() {
|
||||
$('.st_theme_image_preview').load(function() {
|
||||
if (this.width < 2)
|
||||
{
|
||||
this.width = 50;
|
||||
}
|
||||
|
||||
if (this.height < 2)
|
||||
{
|
||||
this.height = 50;
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
||||
@@ -0,0 +1,3 @@
|
||||
<?php use_helper('stThemeBackend') ?>
|
||||
|
||||
<?php echo st_theme_upload_image_tag('home', $theme_config, $theme_config->getHomeImage());
|
||||
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
if ($type == 'list')
|
||||
{
|
||||
if ($theme->getIsResponsive())
|
||||
{
|
||||
echo '<div style="text-align: center;">';
|
||||
echo st_admin_get_icon('check-circle');
|
||||
echo '</div>';
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
echo st_admin_checkbox_tag('theme[is_responsive]', true, $theme->getIsResponsive());
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
/**
|
||||
* @var ThemeConfig $theme_config
|
||||
*/
|
||||
?>
|
||||
<div id="edit_actions">
|
||||
<?php if ($theme_config->getConfigParameter('layouts') || $theme_config->getConfigParameter('layout_config')): ?>
|
||||
<?php echo st_get_admin_actions_head(array('style' => 'float: left; margin-right: 5px')) ?>
|
||||
<?php echo st_get_admin_action('refresh', __('Przywróć domyślną konfigurację'), '@stThemePlugin?action=layoutSave&id='.$theme_config->getId().'&restore=1', array('name' => 'restore', 'confirm' => __('Chcesz przywrocić domyślną konfigurację. Jesteś pewien?'))) ?>
|
||||
</ul>
|
||||
<?php endif; ?>
|
||||
<?php echo st_get_admin_actions_head(array('style' => 'float: right')) ?>
|
||||
<?php echo st_get_admin_action('save', __('Zapisz'), null, array('name' => 'save')) ?>
|
||||
<?php echo st_get_admin_actions_foot() ?>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
jQuery(function($) {
|
||||
$('#edit_actions').stickyBox();
|
||||
});
|
||||
</script>
|
||||
@@ -0,0 +1,10 @@
|
||||
<form action="<?php echo url_for('@stThemePlugin?action=layoutSave&id='.$theme_config->getId()) ?>" enctype="multipart/form-data" method="post" name="sf_admin_edit_form" id="sf_admin_edit_form" class="admin_form">
|
||||
<fieldset>
|
||||
<div class="content">
|
||||
<?php foreach ($config->getCategories('layout_config') as $category): ?>
|
||||
<?php st_theme_layout_field($category, $config, $theme_config) ?>
|
||||
<?php endforeach ?>
|
||||
</div>
|
||||
</fieldset>
|
||||
<?php st_include_partial('stThemeBackend/layout_edit_actions', array('theme_config' => $theme_config)) ?>
|
||||
</form>
|
||||
@@ -0,0 +1,3 @@
|
||||
<?php use_helper('stThemeBackend') ?>
|
||||
|
||||
<?php echo st_theme_upload_image_tag('logo', $theme_config, $theme_config->getLogoImage());
|
||||
@@ -0,0 +1,3 @@
|
||||
<?php foreach ($config['editor_config']['styling'] as $group => $params): ?>
|
||||
<fieldset></fieldset>
|
||||
<?php endforeach; ?>
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php if($type=="list"): ?>
|
||||
<?php if ($theme->getVersion() >= 7): ?>
|
||||
<?php echo st_admin_get_icon('mobile') ?>
|
||||
<?php endif ?>
|
||||
<span class="align-middle"><?php echo $theme->getTheme() ?></span>
|
||||
<?php else: ?>
|
||||
<?php if ($theme->getIsSystemDefault() == 1): ?>
|
||||
<input type="text" size="50" value="<?php echo $theme->getTheme() ?>" id="theme_theme" name="theme[theme]" disabled>
|
||||
<input type="hidden" size="50" value="<?php echo $theme->getTheme() ?>" id="theme_theme" name="theme[theme]">
|
||||
<?php else: ?>
|
||||
|
||||
<?php if ($sf_request->hasError('theme{theme}')): ?>
|
||||
<?php echo form_error('theme{theme}', array('class' => 'form-error-msg')) ?>
|
||||
<?php endif; ?>
|
||||
<input type="text" size="50" value="<?php echo $theme->getTheme() ?>" id="theme_theme" name="theme[theme]">
|
||||
|
||||
<?php endif; ?>
|
||||
<?php endif ?>
|
||||
@@ -0,0 +1,36 @@
|
||||
<?php use_helper('Object', 'Validation', 'ObjectAdmin', 'I18N', 'VisualEffect', 'stAdminGenerator', 'stDate', 'stJQueryTools', 'stThemeBackend') ?>
|
||||
|
||||
<?php st_include_partial('stThemeBackend/header', array('related_object' => $theme_config->getTheme(), 'title' => __('Zastosuj konfigurację'), 'route' => 'stThemeBackend/applyChanges?id='.$theme_config->getId())) ?>
|
||||
|
||||
<?php st_include_component('stThemeBackend', 'editMenu', array('related_object' => $theme_config->getTheme())); ?>
|
||||
|
||||
<div id="sf_admin_content">
|
||||
<?php if ($theme_config->getTheme()->getVersion() < 2): ?>
|
||||
<div class="form-errors">
|
||||
<h2><?php echo __('Konfiguracja wygladu dostępna jest wyłącznie dla tematow opartych na default2') ?></h2>
|
||||
</div>
|
||||
<?php elseif (!$editor_config->validate()): ?>
|
||||
<div class="form-errors">
|
||||
<h2><?php echo __('Konfiguracja wygladu nie została jeszcze dodana dla tego tematu') ?></h2>
|
||||
</div>
|
||||
<?php else: ?>
|
||||
<?php st_include_partial('stThemeBackend/edit_messages', array('labels' => isset($labels) ? $labels : array())) ?>
|
||||
<div class="form-errors">
|
||||
<h2><?php echo __('Zmiany w konfiguracji palety kolorów i grafiki zostaną zastosowane') ?></h2>
|
||||
</div>
|
||||
<?php echo st_get_admin_actions_head() ?>
|
||||
<?php echo st_get_admin_action('save', __('Zastosuj'), 'stThemeBackend/applyChanges?id='.$theme_config->getId().'&save=1') ?>
|
||||
<?php echo st_get_admin_actions_foot() ?>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
|
||||
<?php st_include_partial('stThemeBackend/footer', array('related_object' => $theme_config->getTheme())); ?>
|
||||
|
||||
<script type="text/javascript">
|
||||
jQuery(function($) {
|
||||
$(document).ready(function() {
|
||||
$('#edit_actions').stickyBox();
|
||||
});
|
||||
|
||||
});
|
||||
</script>
|
||||
@@ -0,0 +1,22 @@
|
||||
<?php use_helper('Object', 'Validation', 'ObjectAdmin', 'I18N', 'VisualEffect', 'stAdminGenerator', 'stDate', 'stJQueryTools', 'stThemeBackend') ?>
|
||||
|
||||
<?php st_include_partial('stThemeBackend/header', array('related_object' => $theme_config->getTheme(), 'title' => __('Konfiguracja palety kolorów'), 'route' => 'stThemeBackend/colorEdit?id='.$theme_config->getId())) ?>
|
||||
|
||||
<?php st_include_partial('stThemeBackend/edit_menu', array('related_object' => $theme_config->getTheme(), 'forward_parameters' => $forward_parameters)); ?>
|
||||
|
||||
<div id="sf_admin_content">
|
||||
<?php if ($theme_config->getTheme()->getVersion() < 2): ?>
|
||||
<div class="form-errors">
|
||||
<h2><?php echo __('Konfiguracja wygladu dostępna jest wyłącznie dla tematow opartych na default2') ?></h2>
|
||||
</div>
|
||||
<?php elseif (!$editor_config->validate()): ?>
|
||||
<div class="form-errors">
|
||||
<h2><?php echo __('Konfiguracja wygladu nie została jeszcze dodana dla tego tematu') ?></h2>
|
||||
</div>
|
||||
<?php else: ?>
|
||||
<?php st_include_partial('stThemeBackend/edit_messages', array('labels' => isset($labels) ? $labels : array())) ?>
|
||||
<?php st_include_partial('stThemeBackend/color_edit_form', array('theme_config' => $theme_config, 'editor_config' => $editor_config)) ?>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
|
||||
<?php st_include_partial('stThemeBackend/footer', array('related_object' => $theme_config->getTheme())); ?>
|
||||
@@ -0,0 +1,12 @@
|
||||
<?php use_helper('stAdminGenerator', 'stProgressBar') ?>
|
||||
|
||||
<?php st_include_partial('stThemeBackend/header', array('related_object' => $theme, 'title' => __('Zastosuj konfigurację'), 'route' => 'stThemeBackend/edit?id='.$theme->getId())) ?>
|
||||
|
||||
<?php st_include_component('stThemeBackend', 'editMenu', array('related_object' => $theme)); ?>
|
||||
|
||||
<?php echo progress_bar('stThemeCopy_'.$copy_theme.'_'.$theme->getId().'_'.$theme_name, 'stThemeCopyProgressBar', 'step', stThemeCopyProgressBar::getSteps());?>
|
||||
<?php echo st_get_admin_actions_head('style="float: right; visibility: hidden;" id="theme-progressbar-button"');?>
|
||||
<?php echo st_get_admin_action('save', __('Dalej'), 'stThemeBackend/edit?id='.$theme->getId(), array("name" => "save",));?>
|
||||
<?php echo st_get_admin_actions_foot();?>
|
||||
|
||||
<?php st_include_partial('stThemeBackend/footer', array('related_object' => $theme)); ?>
|
||||
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
if ($handle) {
|
||||
while (!feof($handle)) echo fread($handle, 8192);
|
||||
fclose($handle);
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
<?php use_helper('Object', 'Validation', 'ObjectAdmin', 'I18N', 'VisualEffect', 'stAdminGenerator', 'stDate', 'stJQueryTools', 'stThemeBackend') ?>
|
||||
|
||||
<?php st_include_partial('stThemeBackend/header', array('related_object' => $theme_config->getTheme(), 'title' => __('Konfiguracja grafiki'), 'route' => 'stThemeBackend/graphicEdit?id='.$theme_config->getId())) ?>
|
||||
|
||||
<?php st_include_partial('stThemeBackend/edit_menu', array('related_object' => $theme_config->getTheme(), 'forward_parameters' => $forward_parameters)); ?>
|
||||
|
||||
|
||||
<?php if ($theme_config->getTheme()->getVersion() < 2): ?>
|
||||
<div class="form-errors">
|
||||
<h2><?php echo __('Konfiguracja wygladu dostępna jest wyłącznie dla tematow opartych na default2') ?></h2>
|
||||
</div>
|
||||
<?php elseif (!$editor_config->validate()): ?>
|
||||
<div class="form-errors">
|
||||
<h2><?php echo __('Konfiguracja wygladu nie została jeszcze dodana dla tego tematu') ?></h2>
|
||||
</div>
|
||||
<?php else: ?>
|
||||
<?php st_include_partial('stAdminGenerator/message', array('labels' => isset($labels) ? $labels : array())) ?>
|
||||
<?php st_include_partial('stThemeBackend/graphic_edit_form', array('theme_config' => $theme_config, 'editor_config' => $editor_config)) ?>
|
||||
<?php endif; ?>
|
||||
|
||||
|
||||
<?php st_include_partial('stThemeBackend/footer', array('related_object' => $theme_config->getTheme())); ?>
|
||||
@@ -0,0 +1,16 @@
|
||||
<?php use_helper('Object', 'Validation', 'ObjectAdmin', 'I18N', 'VisualEffect', 'stAdminGenerator', 'stDate', 'stJQueryTools', 'stThemeBackend') ?>
|
||||
|
||||
<?php st_include_partial('stThemeBackend/header', array('related_object' => $theme_config->getTheme(), 'title' => __('Konfiguracja układu'), 'route' => 'stThemeBackend/layoutEdit?id='.$theme_config->getId())) ?>
|
||||
|
||||
<?php st_include_partial('stThemeBackend/edit_menu', array('related_object' => $theme_config->getTheme(), 'forward_parameters' => $forward_parameters)); ?>
|
||||
|
||||
<?php if ($theme_config->getTheme()->getVersion() < 2): ?>
|
||||
<div class="form-errors">
|
||||
<h2><?php echo __('Konfiguracja układu dostępna jest wyłącznie dla tematow opartych na default2') ?></h2>
|
||||
</div>
|
||||
<?php else: ?>
|
||||
<?php st_include_partial('stAdminGenerator/message', array('labels' => isset($labels) ? $labels : array())) ?>
|
||||
<?php st_include_partial('stThemeBackend/layout_edit_form', array('theme_config' => $theme_config, 'config' => $config)) ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php st_include_partial('stThemeBackend/footer', array('related_object' => $theme_config->getTheme())); ?>
|
||||
Reference in New Issue
Block a user