PluginProbe ʕ •ᴥ•ʔ
PublishPress Capabilities – User Role Editor, Access Permissions, User Capabilities, Admin Menus / 2.19.1
PublishPress Capabilities – User Role Editor, Access Permissions, User Capabilities, Admin Menus v2.19.1
2.45.0 2.44.0 trunk 1.10 1.10.1 1.4.1 1.4.10 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.9 1.5 1.5.1 1.5.10 1.5.11 1.5.2 1.5.3 1.5.4 1.5.5 1.5.7 1.5.8 1.5.9 1.6 1.6.1 1.7 1.7.1 1.7.2 1.7.3 1.7.4 1.7.5 1.8.1 1.9 1.9.10 1.9.12 1.9.2 1.9.3 1.9.4 1.9.5 1.9.6 1.9.9 2.0 2.0.2 2.0.3 2.1 2.1.1 2.10.0 2.10.1 2.10.2 2.10.3 2.11.1 2.12.1 2.12.2 2.13.0 2.14.0 2.15.0 2.16.0 2.17.0 2.18.0 2.18.2 2.19.0 2.19.1 2.19.2 2.2 2.2.1 2.20.0 2.21.0 2.22.0 2.23.0 2.3 2.3.1 2.3.2 2.3.3 2.3.4 2.3.5 2.3.6 2.30.0 2.31.0 2.32.0 2.4.0 2.4.1 2.4.2 2.4.3 2.4.4 2.40.0 2.41.0 2.42.0 2.43.0 2.5.0 2.5.1 2.5.2 2.6.0 2.6.1 2.7.0 2.7.1 2.8.0 2.8.1 2.9.0 2.9.1
capability-manager-enhanced / includes / settings.php
capability-manager-enhanced / includes Last commit date
admin-notices 1 year ago features 1 year ago plugin-capabilities 1 year ago redirects 1 year ago roles 1 year ago admin-load.php 1 year ago admin.php 1 year ago backup-handler.php 1 year ago backup.php 1 year ago cap-helper.php 1 year ago dashboard.php 1 year ago extractor-capabilities.php 1 year ago filters-admin.php 1 year ago filters-woocommerce.php 1 year ago filters-wp_rest_workarounds.php 1 year ago filters.php 1 year ago functions-admin.php 1 year ago functions.php 1 year ago handler.php 1 year ago inflect-cme.php 1 year ago manager.php 1 year ago network.php 1 year ago plugin-capabilities.php 1 year ago pp-handler.php 1 year ago pp-ui.php 1 year ago publishpress-roles.php 1 year ago settings-handler.php 1 year ago settings-ui.php 1 year ago settings.php 1 year ago test-user-ui.php 1 year ago test-user.php 1 year ago
settings.php
56 lines
1 <?php
2 /*
3 * PublishPress Capabilities [Free]
4 *
5 * Settings UI
6 *
7 */
8
9 global $wpdb;
10 ?>
11
12 <div class="wrap publishpress-caps-manage publishpress-caps-settings pressshack-admin-wrapper">
13 <h1><?php printf(esc_html__('Capabilities Settings', 'capability-manager-enhanced'), '<a href="admin.php?page=pp-capabilities">', '</a>'); ?></h1>
14
15 <form class="basic-settings" method="post" action="">
16 <?php wp_nonce_field('pp-capabilities-settings'); ?>
17
18 <br />
19
20 <?php do_action('pp-capabilities-settings-ui');?>
21
22 <?php if (!defined('PUBLISHPRESS_CAPS_PRO_VERSION')) : /*?>
23 <h3><?php esc_html_e('Related Permissions Plugins', 'capability-manager-enhanced');?></h3>
24 <ul>
25 <?php $_url = "plugin-install.php?tab=plugin-information&plugin=publishpress&TB_iframe=true&width=640&height=678";
26 $url = ( is_multisite() ) ? network_admin_url($_url) : admin_url($_url);
27 ?>
28 <li><a class="thickbox" href="<?php echo (esc_url_raw($url));?>"><?php esc_html_e('PublishPress', 'capability-manager-enhanced');?></a></li>
29
30 <?php $_url = "plugin-install.php?tab=plugin-information&plugin=publishpress-authors&TB_iframe=true&width=640&height=678";
31 $url = ( is_multisite() ) ? network_admin_url($_url) : admin_url($_url);
32 ?>
33 <li><a class="thickbox" href="<?php echo (esc_url_raw($url));?>"><?php esc_html_e('PublishPress Authors', 'capability-manager-enhanced');?></a></li>
34 </li>
35
36 <?php $_url = "plugin-install.php?tab=plugin-information&plugin=press-permit-core&TB_iframe=true&width=640&height=678";
37 $url = ( is_multisite() ) ? network_admin_url($_url) : admin_url($_url);
38 ?>
39 <li><a class="thickbox" href="<?php echo (esc_url_raw($url));?>"><?php esc_html_e('PublishPress Permissions', 'capability-manager-enhanced');?></a></li>
40 </li>
41
42 <?php $_url = "plugin-install.php?tab=plugin-information&plugin=revisionary&TB_iframe=true&width=640&height=678";
43 $url = ( is_multisite() ) ? network_admin_url($_url) : admin_url($_url);
44 ?>
45 <li><a class="thickbox" href="<?php echo (esc_url_raw($url));?>"><?php esc_html_e('PublishPress Revisions', 'capability-manager-enhanced');?></a></li>
46
47 <li class="publishpress-contact"><a href="https://publishpress.com/contact" target="_blank"><?php esc_html_e('Help / Contact Form', 'capability-manager-enhanced');?></a></li>
48 </ul>
49 <?php */ endif;?>
50 </form>
51
52 <?php if (!defined('PUBLISHPRESS_CAPS_PRO_VERSION') || get_option('cme_display_branding')) {
53 cme_publishpressFooter();
54 }
55 ?>
56 </div>