mirror of
https://github.com/monstra-cms/monstra.git
synced 2025-08-06 21:26:58 +02:00
218 lines
9.7 KiB
PHP
218 lines
9.7 KiB
PHP
<div class="row margin-bottom-2">
|
|
<div class="col-xs-6">
|
|
|
|
<h2 class="margin-bottom-1"><?php echo __('Site Theme', 'themes'); ?></h2>
|
|
|
|
<!-- Themes_selector -->
|
|
<?php
|
|
echo (
|
|
Form::open().
|
|
Form::hidden('csrf', Security::token()).
|
|
Form::label('themes', __('Select Theme', 'themes')).
|
|
Form::select('themes', $themes_site, $current_site_theme, array('class' => 'form-control')). Html::br().
|
|
Form::submit('save_site_theme', __('Save', 'themes'), array('class' => 'btn btn-primary')).
|
|
Form::close()
|
|
);
|
|
?>
|
|
<!-- /Themes_selector -->
|
|
|
|
</div>
|
|
|
|
<div class="col-xs-6">
|
|
|
|
<h2 class="margin-bottom-1"><?php echo __('Admin Theme', 'themes'); ?></h2>
|
|
|
|
<!-- Themes_selector -->
|
|
<?php
|
|
echo (
|
|
Form::open().
|
|
Form::hidden('csrf', Security::token()).
|
|
Form::label('themes', __('Select Theme', 'themes')).
|
|
Form::select('themes', $themes_admin, $current_admin_theme, array('class' => 'form-control')). Html::br().
|
|
Form::submit('save_admin_theme', __('Save', 'themes'), array('class' => 'btn btn-primary')).
|
|
Form::close()
|
|
);
|
|
?>
|
|
<!-- /Themes_selector -->
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<hr>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-xs-12">
|
|
|
|
<?php
|
|
echo (
|
|
Html::heading(__('Current Site Theme', 'themes') . ': '. $current_site_theme, 2). Html::br()
|
|
);
|
|
?>
|
|
|
|
<?php echo (Html::anchor(__('Create New Template', 'themes'), 'index.php?id=themes&action=add_template', array('title' => __('Create New Template'), 'class' => 'btn btn-default')).Html::br(2)); ?>
|
|
|
|
<!-- Templates_list -->
|
|
<table class="table table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th><?php echo __('Templates', 'themes'); ?></th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php if (count($templates) != 0) foreach ($templates as $template) { ?>
|
|
<tr>
|
|
<td><?php echo basename($template, '.template.php'); ?></td>
|
|
<td>
|
|
<div class="pull-right">
|
|
<div class="btn-group">
|
|
<?php echo Html::anchor(__('Edit', 'themes'), 'index.php?id=themes&action=edit_template&filename='.basename($template, '.template.php'), array('class' => 'btn btn-primary')); ?>
|
|
<button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown">
|
|
<span class="caret"></span>
|
|
<span class="sr-only">Toggle Dropdown</span>
|
|
</button>
|
|
<ul class="dropdown-menu" role="menu">
|
|
<li><?php echo Html::anchor(__('Clone', 'themes'), 'index.php?id=themes&action=clone_template&filename='.basename($template, '.template.php').'&token='.Security::token(), array('title' => __('Clone'))); ?></li>
|
|
</ul>
|
|
</div>
|
|
<?php echo Html::anchor(__('Delete', 'themes'),
|
|
'index.php?id=themes&action=delete_template&filename='.basename($template, '.template.php').'&token='.Security::token(),
|
|
array('class' => 'btn btn-actions btn-danger btn-actions-default', 'onclick' => "return confirmDelete('".__('Delete template: :name', 'themes', array(':name' => basename($template, '.template.php')))."')"));
|
|
?>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<?php } ?>
|
|
</tbody>
|
|
</table>
|
|
<!-- /Templates_list -->
|
|
|
|
<?php echo (Html::anchor(__('Create New Chunk', 'themes'), 'index.php?id=themes&action=add_chunk', array('title' => __('Create New Chunk', 'themes'), 'class' => 'btn btn-default')).Html::br(2)); ?>
|
|
|
|
<!-- Chunks_list -->
|
|
<table class="table table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th><?php echo __('Chunks', 'themes'); ?></th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php if (count($chunks) != 0) foreach ($chunks as $chunk) { ?>
|
|
<tr>
|
|
<td><?php echo basename($chunk, '.chunk.php'); ?></td>
|
|
<td>
|
|
<div class="pull-right">
|
|
<div class="btn-group">
|
|
<?php echo Html::anchor(__('Edit', 'themes'), 'index.php?id=themes&action=edit_chunk&filename='.basename($chunk, '.chunk.php'), array('class' => 'btn btn-primary')); ?>
|
|
<button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown">
|
|
<span class="caret"></span>
|
|
<span class="sr-only">Toggle Dropdown</span>
|
|
</button>
|
|
<ul class="dropdown-menu" role="menu">
|
|
<li><?php echo Html::anchor(__('Clone', 'themes'), 'index.php?id=themes&action=clone_chunk&filename='.basename($chunk, '.chunk.php').'&token='.Security::token(), array('title' => __('Clone', 'themes'))); ?></li>
|
|
</ul>
|
|
</div>
|
|
<?php echo Html::anchor(__('Delete', 'themes'),
|
|
'index.php?id=themes&action=delete_chunk&filename='.basename($chunk, '.chunk.php').'&token='.Security::token(),
|
|
array('class' => 'btn btn-actions btn-danger btn-actions-default', 'onclick' => "return confirmDelete('".__('Delete chunk: :name', 'themes', array(':name' => basename($chunk, '.chunk.php')))."')"));
|
|
?>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<?php } ?>
|
|
</tbody>
|
|
</table>
|
|
<!-- /Chunks_list -->
|
|
|
|
<?php echo (Html::anchor(__('Create New Styles', 'themes'), 'index.php?id=themes&action=add_styles', array('title' => __('Create New Style', 'themes'), 'class' => 'btn btn-default')).Html::br(2)); ?>
|
|
|
|
<!-- Styles_list -->
|
|
<table class="table table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th><?php echo __('Styles', 'themes'); ?></td>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php if (count($styles) != 0) foreach ($styles as $style) { ?>
|
|
<tr>
|
|
<td><?php echo basename($style, '.css'); ?></td>
|
|
<td>
|
|
<div class="pull-right">
|
|
<div class="btn-group">
|
|
<?php echo Html::anchor(__('Edit', 'themes'), 'index.php?id=themes&action=edit_styles&filename='.basename($style, '.css'), array('class' => 'btn btn-primary')); ?>
|
|
<button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown">
|
|
<span class="caret"></span>
|
|
<span class="sr-only">Toggle Dropdown</span>
|
|
</button>
|
|
<ul class="dropdown-menu" role="menu">
|
|
<li><?php echo Html::anchor(__('Clone', 'themes'), 'index.php?id=themes&action=clone_styles&filename='.basename($style, '.css').'&token='.Security::token(), array('title' => __('Clone', 'themes'))); ?></li>
|
|
</ul>
|
|
</div>
|
|
<?php echo Html::anchor(__('Delete', 'themes'),
|
|
'index.php?id=themes&action=delete_styles&filename='.basename($style, '.css').'&token='.Security::token(),
|
|
array('class' => 'btn btn-actions btn-danger btn-actions-default', 'onclick' => "return confirmDelete('".__('Delete styles: :name', 'themes', array(':name' => basename($style, '.css')))."')"));
|
|
?>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<?php } ?>
|
|
</tbody>
|
|
</table>
|
|
<!-- /Styles_list -->
|
|
|
|
<?php echo (Html::anchor(__('Create New Script', 'themes'), 'index.php?id=themes&action=add_script', array('title' => __('Create New Script', 'themes'), 'class' => 'btn btn-default')).Html::br(2)); ?>
|
|
|
|
<!-- Scripts_list -->
|
|
<table class="table table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th><?php echo __('Scripts', 'themes'); ?></th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php if (count($scripts) != 0) foreach ($scripts as $script) { ?>
|
|
<tr>
|
|
<td><?php echo basename($script, '.js'); ?></td>
|
|
<td>
|
|
<div class="pull-right">
|
|
<div class="btn-group">
|
|
<?php echo Html::anchor(__('Edit', 'themes'), 'index.php?id=themes&action=edit_script&filename='.basename($script, '.js'), array('class' => 'btn btn-primary')); ?>
|
|
<button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown">
|
|
<span class="caret"></span>
|
|
<span class="sr-only">Toggle Dropdown</span>
|
|
</button>
|
|
<ul class="dropdown-menu" role="menu">
|
|
<li><?php echo Html::anchor(__('Clone', 'themes'), 'index.php?id=themes&action=clone_script&filename='.basename($script, '.js').'&token='.Security::token(), array('title' => __('Clone', 'themes'))); ?></li>
|
|
</ul>
|
|
</div>
|
|
<?php echo Html::anchor(__('Delete', 'themes'),
|
|
'index.php?id=themes&action=delete_script&filename='.basename($script, '.js').'&token='.Security::token(),
|
|
array('class' => 'btn btn-actions btn-danger btn-actions-default', 'onclick' => "return confirmDelete('".__('Delete script: :name', 'themes', array(':name' => basename($script, '.js')))."')"));
|
|
?>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<?php } ?>
|
|
</tbody>
|
|
</table>
|
|
<!-- /Scripts_list -->
|
|
|
|
<?php // All exept Pages, Users and Sitemap plugins
|
|
if (count(Plugin::$components) > 3) {
|
|
?>
|
|
<h2><?php echo __('Components templates', 'themes'); ?></h2><br>
|
|
<?php
|
|
// Its mean that you can add your own actions for this plugin
|
|
Action::run('admin_themes_extra_index_template_actions');
|
|
}
|
|
?>
|
|
|
|
</div>
|
|
</div>
|