File modules/cms/ui/themes/default/html/views/configuration/edit.php

Last commit: Mon Mar 8 01:24:06 2021 +0100	Jan Dankert	New: Action menu on many lists; tables have now a fixed layout
1 <?php /* THIS FILE IS GENERATED from edit.tpl.src.xml - DO NOT CHANGE */ defined('APP_STARTED') || die('Forbidden'); use \template_engine\Output as O; ?> 2 <div class="<?php echo O::escapeHtml('or-table-wrapper') ?>"><?php echo O::escapeHtml('') ?> 3 <div class="<?php echo O::escapeHtml('or-table-filter') ?>"><?php echo O::escapeHtml('') ?> 4 <input type="<?php echo O::escapeHtml('search') ?>" name="<?php echo O::escapeHtml('filter') ?>" placeholder="<?php echo O::escapeHtml(''.@O::lang('SEARCH_FILTER').'') ?>" class="<?php echo O::escapeHtml('or-input or-table-filter-input') ?>" /><?php echo O::escapeHtml('') ?> 5 </div> 6 <div class="<?php echo O::escapeHtml('or-table-area') ?>"><?php echo O::escapeHtml('') ?> 7 <table class="<?php echo O::escapeHtml('or-table') ?>"><?php echo O::escapeHtml('') ?> 8 <tr class="<?php echo O::escapeHtml('or-table-header') ?>"><?php echo O::escapeHtml('') ?> 9 <th><?php echo O::escapeHtml('') ?> 10 <span><?php echo O::escapeHtml(''.@O::lang('NAME').'') ?></span> 11 </th> 12 <th><?php echo O::escapeHtml('') ?> 13 <span><?php echo O::escapeHtml(''.@O::lang('VALUE').'') ?></span> 14 </th> 15 </tr> 16 <?php foreach((array)@$config as $list_key=>$entry) { ?> 17 <tr class="<?php echo O::escapeHtml('or-data') ?>"><?php echo O::escapeHtml('') ?> 18 <td><?php echo O::escapeHtml('') ?> 19 <span><?php echo O::escapeHtml(''.@$entry['value']['key'].'') ?></span> 20 </td> 21 <td class="<?php echo O::escapeHtml('or-'.@$class.'') ?>"><?php echo O::escapeHtml('') ?> 22 <span class="<?php echo O::escapeHtml('or-'.@$class.'') ?>"><?php echo O::escapeHtml(''.@$entry['value']['value'].'') ?></span> 23 </td> 24 </tr> 25 <?php } ?> 26 </table> 27 </div> 28 </div>
Download modules/cms/ui/themes/default/html/views/configuration/edit.php
History Mon, 8 Mar 2021 01:24:06 +0100 Jan Dankert New: Action menu on many lists; tables have now a fixed layout Thu, 4 Mar 2021 02:00:11 +0100 Jan Dankert New: Show all page filenames in info. Thu, 19 Nov 2020 14:49:58 +0100 Jan Dankert Fix: Action::addNotice() is replaced by Action::addNoticeFor() Thu, 19 Nov 2020 12:28:33 +0100 Jan Dankert Fix: nextSubAction() is depracated and should not be used.