Вход Регистрация
Файл: concrete5.7.5.6/concrete/tools/tree/node/edit/topic.php
Строк: 45
<?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();
$canEdit = (is_object($node) && $node->getTreeNodeTypeHandle() == 'topic' && $np->canEditTreeNode());
$url View::url('/dashboard/system/attributes/topics''update_topic_node');
$al Loader::helper("concrete/asset_library");
if (
$canEdit) { ?>

    <div class="ccm-ui">
        <form method="post" data-topic-form="update-topic-node" class="form-horizontal" action="<?php echo $url?>">
            <?php echo Loader::helper('validation/token')->output('update_topic_node')?>
            <input type="hidden" name="treeNodeID" value="<?php echo $node->getTreeNodeID()?>" />
            <div class="form-group">
                <?php echo $form->label('treeNodeTopicName't('Topic'))?>
                <?php echo $form->text('treeNodeTopicName'$node->getTreeNodeName(), array('class' => 'span4'))?>
            </div>
            <div class="dialog-buttons">
                <button class="btn btn-default" onclick="jQuery.fn.dialog.closeTop()"><?php echo t('Cancel')?></button>
                <button class="btn btn-primary pull-right" type="submit"><?php echo t('Update')?></button>
            </div>
        </form>
    </div>


<?php
}
Онлайн: 3
Реклама