configpress.phtml
8 years ago
content.phtml
8 years ago
core.phtml
8 years ago
tools.phtml
8 years ago
content.phtml
21 lines
| 1 | <?php if (defined('AAM_KEY')) { ?> |
| 2 | <div class="aam-feature settings" id="settings-content-content"> |
| 3 | <table class="table table-striped table-bordered"> |
| 4 | <tbody> |
| 5 | <?php foreach($this->getList() as $id => $option) { ?> |
| 6 | <tr> |
| 7 | <td> |
| 8 | <span class='aam-setting-title'><?php echo $option['title']; ?></span> |
| 9 | <p class="aam-setting-description"> |
| 10 | <?php echo $option['descr']; ?> |
| 11 | </p> |
| 12 | </td> |
| 13 | <td class="text-center"> |
| 14 | <input data-toggle="toggle" name="<?php echo $id; ?>" id="utility-<?php echo $id; ?>" <?php echo ($option['value'] ? 'checked' : ''); ?> type="checkbox" data-on="Enabled" data-off="Disabled" data-size="small" /> |
| 15 | </td> |
| 16 | </tr> |
| 17 | <?php } ?> |
| 18 | </tbody> |
| 19 | </table> |
| 20 | </div> |
| 21 | <?php } |