object
9 years ago
partial
9 years ago
contact.phtml
9 years ago
extension.phtml
9 years ago
index.phtml
9 years ago
main-panel.phtml
9 years ago
metabox.phtml
9 years ago
security.phtml
9 years ago
utility.phtml
9 years ago
main-panel.phtml
24 lines
| 1 | <?php if (defined('AAM_KEY')) { ?> |
| 2 | <div class="row"> |
| 3 | <div class="col-xs-12 col-md-4"> |
| 4 | <ul class="list-group" id="feature-list"> |
| 5 | <?php |
| 6 | foreach (AAM_Backend_Feature::retriveList() as $i => $feature) { |
| 7 | echo '<li class="list-group-item" data-feature="' . $feature->uid . '">'; |
| 8 | echo $feature->title; |
| 9 | echo (empty($feature->notification) ? '' : ' <span class="badge">' . $feature->notification . '</span>'); |
| 10 | echo '</li>'; |
| 11 | } |
| 12 | ?> |
| 13 | </ul> |
| 14 | </div> |
| 15 | <div class="col-xs-12 col-md-8"> |
| 16 | <?php |
| 17 | foreach (AAM_Backend_Feature::retriveList() as $feature) { |
| 18 | echo $feature->view->getContent(); |
| 19 | } |
| 20 | do_action('aam-content-action'); |
| 21 | ?> |
| 22 | </div> |
| 23 | </div> |
| 24 | <?php } |