Файл: concrete5.7.5.6/concrete/blocks/core_gathering/form/output.php
Строк: 12
<?php
defined('C5_EXECUTE') or die("Access Denied.");
if ($controller->getTask() == 'add') {
$itemsPerPage = 20;
}
?>
<input type="hidden" name="tab[]" value="output" />
<div class="form-horizontal">
<div class="control-group" data-row="itemsPerPage">
<label class="control-label"><?php echo t('Items Per Page')?></label>
<div class="controls">
<?php echo $form->text('itemsPerPage', $itemsPerPage, array('class' => 'span1'))?>
</div>
</div>
</div>