1
0
mirror of https://github.com/monstra-cms/monstra.git synced 2025-07-31 18:30:20 +02:00
Files
php-monstra/plugins/box/blocks/views/backend/index.view.php
2014-05-10 22:12:06 +04:00

66 lines
2.9 KiB
PHP
Executable File

<div class="vertical-align margin-bottom-1">
<div class="text-left row-phone">
<h2><?php echo __('Blocks', 'blocks'); ?></h2>
</div>
<div class="text-right row-phone">
<?php
echo (
Html::anchor(__('Create New Block', 'blocks'), 'index.php?id=blocks&action=add_block', array('title' => __('Create New Block', 'blocks'), 'class' => 'btn btn-phone btn-primary'))
);
?>
</div>
</div>
<!-- Blocks_list -->
<table class="table table-bordered">
<thead>
<tr>
<th><?php echo __('Blocks', 'blocks'); ?></th>
<th></th>
</tr>
</thead>
<tbody>
<?php if (count($blocks_list) != 0) foreach ($blocks_list as $block) { ?>
<tr>
<td><?php echo basename($block, '.block.html'); ?></td>
<td>
<div class="pull-right">
<div class="btn-group">
<?php echo Html::anchor(__('Edit', 'blocks'), 'index.php?id=blocks&action=edit_block&filename='.basename($block, '.block.html'), array('class' => 'btn btn-primary')); ?>
<button type="button" class="btn dropdown-toggle btn-primary" 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(__('View Embed Code', 'blocks'), 'javascript:;', array('title' => __('View Embed Code', 'blocks'), 'onclick' => '$.monstra.blocks.showEmbedCodes("'.basename($block, '.block.html').'");')); ?></li>
</ul>
</div>
<?php echo Html::anchor(__('Delete', 'blocks'),
'index.php?id=blocks&action=delete_block&filename='.basename($block, '.block.html').'&token='.Security::token(),
array('class' => 'btn btn-danger', 'onclick' => "return confirmDelete('".__('Delete block: :block', 'blocks', array(':block' => basename($block, '.block.html')))."')"));
?>
</div>
</td>
</tr>
<?php } ?>
</tbody>
</table>
<!-- /Blocks_list -->
<div class="modal fade" id="embedCodes">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<div class="close" data-dismiss="modal">&times;</div>
<h4 class="modal-title"><?php echo __('Embed Code', 'snippets'); ?></h4>
</div>
<div class="modal-body">
<b><?php echo __('Shortcode', 'snippets'); ?></b><br>
<pre><code id="shortcode"></code></pre>
<br>
<b><?php echo __('PHP Code', 'snippets'); ?></b><br>
<pre><code id="phpcode"></code></pre>
</div>
</div>
</div>
</div>