Файл: concrete5.7.5.6/concrete/single_pages/dashboard/system/attributes/topics/view.php
Строк: 90
<?php defined('C5_EXECUTE') or die("Access Denied.");
$jh = Core::make('helper/json');
?>
<nav class="navbar navbar-default">
<div class="container-fluid">
<ul class="nav navbar-nav">
<li class="navbar-form" style="padding-left: 0px">
<select name="topicTreeIDSelect" id="topicTreeIDSelect" class="form-control input-sm">
<?php foreach($trees as $stree) {?>
<option value="<?php echo $stree->getTreeID()?>" <?php if ($tree->getTreeID() == $stree->getTreeID()) { ?>selected<?php } ?>><?php echo $stree->getTreeDisplayName()?></option>
<?php } ?>
</select>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="navbar-form">
<?php if (PermissionKey::getByHandle('remove_topic_tree')->validate() && is_object($tree)) { ?>
<button type="button" data-dialog="delete-topic-tree" class="btn btn-danger btn-sm"><?php echo t('Delete Topic Tree')?></button>
<?php } ?>
<?php if (PermissionKey::getByHandle('add_topic_tree')->validate()) { ?>
<button onclick="window.location.href='<?php echo $view->url('/dashboard/system/attributes/topics/add')?>'" class="btn btn-default btn-sm"><?php echo t('Add Topic Tree')?></button>
<?php } ?>
</li>
</ul>
</div>
</nav>
<?php if (is_object($tree)) { ?>
<div class="topic-tree" data-topic-tree="<?php echo $tree->getTreeID()?>">
</div>
<script type="text/javascript">
$(function() {
$('select[name=topicTreeIDSelect]').on('change', function() {
window.location.href = '<?php echo $view->url('/dashboard/system/attributes/topics', 'view')?>' + $(this).val();
});
$('[data-topic-tree]').ccmtopicstree({
'treeID': '<?php echo $tree->getTreeID()?>'
});
$('button[data-dialog=delete-topic-tree]').on('click', function() {
jQuery.fn.dialog.open({
element: '#ccm-dialog-delete-topic-tree',
modal: true,
width: 320,
title: <?php echo $jh->encode(t("Delete Topic Tree"))?>,
height: 'auto'
});
});
});
</script>
<div style="display: none">
<div id="ccm-dialog-delete-topic-tree" class="ccm-ui">
<form method="post" class="form-stacked" style="padding-left: 0px" action="<?php echo $view->action('remove_tree')?>">
<?php echo Loader::helper("validation/token")->output('remove_tree')?>
<input type="hidden" name="treeID" value="<?php echo $tree->getTreeID()?>" />
<p><?php echo t('Are you sure? This action cannot be undone.')?></p>
</form>
<div class="dialog-buttons">
<button class="btn btn-default pull-left" onclick="jQuery.fn.dialog.closeTop()"><?php echo t('Cancel')?></button>
<button class="btn btn-danger pull-right" onclick="$('#ccm-dialog-delete-topic-tree form').submit()"><?php echo t('Delete Topic Tree')?></button>
</div>
</div>
</div>
<?php } ?>