Файл: concrete5.7.5.6/concrete/elements/page_types/composer/form/layout_set/control.php
Строк: 83
<?php
defined('C5_EXECUTE') or die("Access Denied.");
/** @var $control ConcreteCorePageTypeComposerFormLayoutSetControl */
$der = ConcreteCorePageTypeComposerControlTypeType::getByID($control->getPageTypeComposerControlTypeID());
$pto = $control->getPageTypeComposerControlObject();
$name = '';
if (strlen($control->getPageTypeComposerFormLayoutSetControlCustomLabel())) {
$name = $pto->getPageTypeComposerControlName() . ' ';
}
?>
<tr class="ccm-page-type-composer-form-layout-control-set-control" data-page-type-composer-form-layout-control-set-control-id="<?php echo $control->getPageTypeComposerFormLayoutSetControlID()?>">
<td style="white-space: nowrap; width: 20%;">
<?php echo $control->getPageTypeComposerControlDisplayLabel(); ?>
</td>
<td style="width: 100%;">
<span class="text-muted"><?php echo $der->getPageTypeComposerControlTypeDisplayName() ?></span>
<?php if ($name): ?>
<span class="text-muted">(<?php echo trim($name) ?>)</span>
<?php endif ?>
</td>
<td style="text-align: right; white-space: nowrap;">
<ul class="ccm-page-type-composer-item-controls">
<li><a href="#" data-command="move-set-control" style="cursor: move"><i class="fa fa-arrows"></i></a></li>
<li><a data-command="edit-form-set-control" href="<?php echo REL_DIR_FILES_TOOLS_REQUIRED?>/page_types/composer/form/edit_control?ptComposerFormLayoutSetControlID=<?php echo $control->getPageTypeComposerFormLayoutSetControlID()?>" class="dialog-launch" dialog-width="400" dialog-height="auto" dialog-modal="true" dialog-title="<?php echo t('Edit Form Control')?>"><i class="fa fa-pencil"></i></a></li>
<li><a href="#" data-delete-set-control="<?php echo $control->getPageTypeComposerFormLayoutSetControlID()?>"><i class="fa fa-trash-o"></i></a></li>
</ul>
<div style="display: none">
<div data-delete-set-control-dialog="<?php echo $control->getPageTypeComposerFormLayoutSetControlID()?>">
<?php echo t("Delete this control? This cannot be undone.")?>
<?php echo Core::make('helper/validation/token')->output('delete_set_control')?>
<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="Composer.deleteFromLayoutSetControl(<?php echo $control->getPageTypeComposerFormLayoutSetControlID()?>)"><?php echo t('Delete Control')?></button>
</div>
</div>
</div>
</td>
</tr>