Файл: concrete5.7.5.6/concrete/tools/tree/node/remove.php
Строк: 46
<?php
defined('C5_EXECUTE') or die("Access Denied.");
$form = Loader::helper('form');
$node = ConcreteCoreTreeNodeNode::getByID(Loader::helper('security')->sanitizeInt($_REQUEST['treeNodeID']));
$np = new Permissions($node);
$tree = $node->getTreeObject();
$url = View::url('/dashboard/system/attributes/topics', 'remove_tree_node');
if (is_object($node) && $np->canDeleteTreeNode() && $tree->getTreeTypeHandle() == 'topic') { ?>
<div class="ccm-ui">
<form method="post" data-topic-form="remove-tree-node" class="form-horizontal" action="<?php echo $url?>">
<?php echo Loader::helper('validation/token')->output('remove_tree_node')?>
<input type="hidden" name="treeNodeID" value="<?php echo $node->getTreeNodeID()?>" />
<p><?php echo t('Are you sure you want to remove this node? It will not remove any resources from the system but it will remove all subcategories and their catalog resource references.')?></p>
<div class="dialog-buttons">
<button class="btn btn-default" onclick="jQuery.fn.dialog.closeTop()"><?php echo t('Cancel')?></button>
<button class="btn btn-danger pull-right" type="submit"><?php echo t('Remove Node')?></button>
</div>
</form>
</div>
<?php
}