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
security.phtml
40 lines
| 1 | <?php if (defined('AAM_KEY')) { ?> |
| 2 | <div class="aam-feature" id="security-content"> |
| 3 | <table class="table table-striped table-bordered"> |
| 4 | <tbody> |
| 5 | <?php do_action('aam-pre-security-content-action'); ?> |
| 6 | |
| 7 | <?php foreach($this->getOptionList() as $id => $option) { ?> |
| 8 | <tr> |
| 9 | <td> |
| 10 | <span class='aam-setting-title'><?php echo $option['title']; ?></span> |
| 11 | <p class="aam-setting-description"> |
| 12 | <?php echo $option['descr']; ?> |
| 13 | </p> |
| 14 | </td> |
| 15 | <td class="text-center"> |
| 16 | <input type="checkbox" name="<?php echo $id; ?>" id="security-<?php echo $id; ?>" <?php echo ($option['value'] ? 'checked' : ''); ?> /> <label for="security-<?php echo $id; ?>"></label> |
| 17 | </td> |
| 18 | </tr> |
| 19 | <?php } ?> |
| 20 | |
| 21 | <?php do_action('aam-post-security-content-action'); ?> |
| 22 | </tbody> |
| 23 | </table> |
| 24 | |
| 25 | <?php if (AAM_Backend_View_CodePinch::isInstalled() === false) { ?> |
| 26 | <div class="metabox-holder"> |
| 27 | <div class="postbox"> |
| 28 | <div class="inside text-center"> |
| 29 | <div class="inner-sm"> |
| 30 | <p class="text-muted text-larger"><?php echo __('Improve your website security and keep your website error free with CodePinch.', AAM_KEY); ?></p> |
| 31 | <a href="<?php echo AAM_Backend_View_CodePinch::getUrl(AAM_CODEPINCH_AFFILIATE_CODE); ?>" class="btn btn-lg btn-success" target="_blank"> |
| 32 | Install Free Plugin |
| 33 | </a> |
| 34 | </div> |
| 35 | </div> |
| 36 | </div> |
| 37 | </div> |
| 38 | <?php } ?> |
| 39 | </div> |
| 40 | <?php } |