Your IP : 216.73.216.164


Current Path : /var/www/html/wp-content/plugins/wp-statistics/includes/admin/templates/settings/
Upload File :
Current File : /var/www/html/wp-content/plugins/wp-statistics/includes/admin/templates/settings/access-level.php

<?php
//Get List Roles Wordpress
global $wp_roles;
?>
<div class="postbox">
    <table class="form-table">
        <tbody>
        <tr valign="top">
            <th scope="row" colspan="2"><h3><?php _e('User Roles', 'wp-statistics'); ?></h3></th>
        </tr>
        <?php

        //Get List Of Capability
        foreach ($wp_roles->roles as $role) {
            $cap_list = $role['capabilities'];
            foreach ($cap_list as $key => $cap) {

                //remove level_ from List
                if (substr($key, 0, 6) != 'level_') {
                    $all_caps[$key] = 1;
                }
            }
        }

        ksort($all_caps);
        $read_cap    = WP_STATISTICS\Option::get('read_capability', 'manage_options');
        $option_list = '';
        foreach ($all_caps as $key => $cap) {
            if ($key == $read_cap) {
                $selected = " SELECTED";
            } else {
                $selected = "";
            }

            $option_list .= sprintf("<option value='%s' %s>%s</option>", esc_attr($key), $selected, esc_attr($key));
        }
        ?>
        <tr valign="top">
            <th scope="row">
                <label for="wps_read_capability"><?php _e('Required User Level to View WP Statistics:', 'wp-statistics') ?></label>
            </th>
            <td>
                <select dir="ltr" id="wps_read_capability" name="wps_read_capability"><?php echo $option_list; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></select>
            </td>
        </tr>

        <?php
        $manage_cap = WP_STATISTICS\Option::get('manage_capability', 'manage_options');
        foreach ($all_caps as $key => $cap) {
            if ($key == $manage_cap) {
                $selected = " SELECTED";
            } else {
                $selected = "";
            }

            $option_list .= sprintf("<option value='%s' %s>%s</option>", esc_attr($key), esc_attr($selected), esc_attr($key));
        }
        ?>
        <tr valign="top">
            <th scope="row">
                <label for="wps_manage_capability"><?php _e('Required User Level to Manage WP Statistics:', 'wp-statistics') ?></label>
            </th>
            <td>
                <select dir="ltr" id="wps_manage_capability" name="wps_manage_capability"><?php echo $option_list; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></select>
            </td>
        </tr>

        <tr valign="top">
            <th scope="row" colspan="2">
                <p class="description"><?php echo sprintf(__('See the %sWordPress Roles and Capabilities%s page for details on capability levels.', 'wp-statistics'), '<a target=_blank href="https://wordpress.org/support/article/roles-and-capabilities/">', '</a>'); ?></p>
                <p class="description"><?php echo __('Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone.', 'wp-statistics'); ?></p>
                <p class="description"><?php echo __('Each of the above cascades the rights upwards in the default WordPress configuration. For example, selecting publish_posts grants the right to Authors, Editors, Admins, and Super Admins.', 'wp-statistics'); ?></p>
                <p class="description"><?php echo sprintf(__('If you need a more robust solution to delegate access, you might want to look at %s Capability Manager Enhanced %s in the WordPress plugin directory.', 'wp-statistics'), '<a href="https://wordpress.org/plugins/capability-manager-enhanced/" target=_blank>', '</a>'); ?></p>
            </th>
        </tr>

        </tbody>
    </table>
</div>

<?php submit_button(__('Update', 'wp-statistics'), 'primary', 'submit', '', array('OnClick' => "var wpsCurrentTab = getElementById('wps_current_tab'); wpsCurrentTab.value='access-settings'")); ?>