configpress.php
1 year ago
content.php
1 year ago
core.php
1 year ago
multisite.php
1 year ago
security.php
1 year ago
service.php
1 year ago
configpress.php
20 lines
| 1 | <?php /** @version 7.0.0 **/ |
| 2 | |
| 3 | if (defined('AAM_KEY')) { ?> |
| 4 | <div class="aam-feature" id="configpress-content"> |
| 5 | <div class="row"> |
| 6 | <div class="col-xs-12"> |
| 7 | <p class="aam-info"> |
| 8 | <?php echo sprintf(__('For detail about AAM configurations, refer to the %sConfigPress%s official documentation.', 'advanced-access-manager'), '<a href="https://aamportal.com/reference/configpress?ref=plugin">', '</a>'); ?> |
| 9 | </p> |
| 10 | </div> |
| 11 | </div> |
| 12 | |
| 13 | <textarea |
| 14 | id="aam-configpress-editor" |
| 15 | class="configpress-editor" |
| 16 | style="border: 1px solid #CCCCCC; width: 100%" |
| 17 | rows="10" |
| 18 | ><?php $c = AAM::api()->db->read(AAM_Service_Core::DB_OPTION) ; echo esc_textarea(is_string($c) && !empty($c) ? $c : ''); ?></textarea> |
| 19 | </div> |
| 20 | <?php } |