PluginProbe
Advanced Access Manager – Access Governance for WordPress / 5.8.2
Advanced Access Manager – Access Governance for WordPress v5.8.2
7.1.4 7.1.2 7.1.3 6.8.4 6.8.5 6.9.0 6.9.1 6.9.10 6.9.11 6.9.12 6.9.13 6.9.14 6.9.15 6.9.16 6.9.17 6.9.18 6.9.19 6.9.2 6.9.20 6.9.21 6.9.22 6.9.23 6.9.24 6.9.25 6.9.26 All 210 releases
advanced-access-manager / Application / Backend / phtml / settings / content.phtml
content.phtml
21 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 }