# automatorwp/6.0.2/includes/admin/settings/general.php

AutomatorWP – No-Code Workflow Automation, Integration &amp; Webhooks Plugin, now with AI, version 6.0.2. 138 lines.

- Page: https://pluginprobe.com/plugins/automatorwp/6.0.2/code/includes/admin/settings/general.php
- Raw: https://pluginprobe.com/plugins/automatorwp/6.0.2/raw/includes/admin/settings/general.php
- Modified: 2026-09-14T10:29:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/automatorwp/6.0.2/code/includes/admin/settings/general.php#L10-L20`.

```php
<?php
/**
 * Admin General Settings
 *
 * @package     AutomatorWP\Admin\Settings\General
 * @author      AutomatorWP <contact@automatorwp.com>, Ruben Garcia <rubengcdev@gmail.com>
 * @since       1.3.2
 */
// Exit if accessed directly
if( !defined( 'ABSPATH' ) ) exit;

/**
 * General Settings meta boxes
 *
 * @since  1.0.0
 *
 * @param array $meta_boxes
 *
 * @return array
 */
function automatorwp_settings_general_meta_boxes( $meta_boxes ) {

    $meta_boxes['general-settings'] = array(
        'title' => automatorwp_dashicon( 'admin-generic' ) . __( 'General Settings', 'automatorwp' ),
        'fields' => apply_filters( 'automatorwp_general_settings_fields', array(
            'minimum_role' => array(
                'name'      => __( 'Minimum Access Role', 'automatorwp' ),
                'tooltip'      => __( 'Minimum role a user needs to access to AutomatorWP management areas.', 'automatorwp' ),
                'label_cb' => 'cmb_tooltip_label_cb',
                'type'      => 'select',
                'options' => automatorwp_get_allowed_manager_capabilities(),
            ),
            'auto_logs_cleanup_days' => array(
                'name'      => __( 'Logs Auto-Cleanup', 'automatorwp' ),
                'tooltip'      => __( 'Enter the number of days you want to keep logs stored. Leave empty to disable this.', 'automatorwp' )
                . '<br>' . __( 'Logs auto-cleanup will remove unused logs older than the number of days entered keeping only the important logs entries.', 'automatorwp' ),
                'label_cb' => 'cmb_tooltip_label_cb',
                'type'      => 'text',
            ),
            'disable_admin_bar_menu' => array(
                'name'      => __( 'Disable Top Bar Menu', 'automatorwp' ),
                'tooltip'      => __( 'Check this option to disable the AutomatorWP top bar menu.', 'automatorwp' ),
                'label_cb' => 'cmb_tooltip_label_cb',
                'type'      => 'checkbox',
                'classes'   => 'cmb2-switch',
            ),
        ) )
    );

    return $meta_boxes;

}
add_filter( 'automatorwp_settings_general_meta_boxes', 'automatorwp_settings_general_meta_boxes' );

/**
 * General Settings fields (extended)
 *
 * @since  1.0.0
 *
 * @param array $fields
 *
 * @return array
 */
function automatorwp_general_settings_fields( $fields ) {

    if( class_exists( 'AutomatorWP_Pro' ) ) {
        return $fields;
    }

    $fields['disable_pro_recommendations'] = array(
        'name'      => __( 'Disable Recommendations', 'automatorwp' ),
        'tooltip'      => __( 'Check this option to disable PRO recommendations.', 'automatorwp' ),
        'label_cb' => 'cmb_tooltip_label_cb',
        'type'      => 'checkbox',
        'classes'   => 'cmb2-switch',
    );

    return $fields;

}
add_filter( 'automatorwp_general_settings_fields', 'automatorwp_general_settings_fields' );

/**
 * Get capability required for AutomatorWP administration.
 *
 * @since  1.0.0
 *
 * @return string User capability.
 */
function automatorwp_get_manager_capability() {

    $minimum_role = automatorwp_get_option( 'minimum_role', 'manage_options' );    
    $allowed_capabilities = array_keys( automatorwp_get_allowed_manager_capabilities() );
    
    // Do not allow to bypass subscribers capability in any way
    $excluded_capabilities = array( 'read' );

    // Check if capability is allowed
    if ( ! in_array( $minimum_role, $allowed_capabilities ) || in_array( $minimum_role, $excluded_capabilities ) ) {
        // If not allowed, manually update the settings
        $update_capability = get_option( 'automatorwp_settings' );
        $update_capability['minimum_role'] = 'manage_options';
        update_option( 'automatorwp_settings',  $update_capability );

        // Set minimum role to manage_options
        $minimum_role = 'manage_options';
        
    }
    
    return $minimum_role;

}

/**
 * Allowed capabilities
 *
 * @since 6.0.0
 *
 * @return array
 */
function automatorwp_get_allowed_manager_capabilities() {

    if ( did_action( 'init' ) ) {
        $allowed_capabilities = array(
            'manage_options' => __( 'Administrator', 'automatorwp' ),
            'delete_others_posts' => __( 'Editor', 'automatorwp' ),
            'publish_posts' => __( 'Author', 'automatorwp' ), 
        );
    } else {
        $allowed_capabilities = array(
            'manage_options' => 'manage_options',
            'delete_others_posts' => 'delete_others_posts',
            'publish_posts' => 'publish_posts', 
        );
    }
    
    return apply_filters( 'automatorwp_allowed_manager_capabilities', $allowed_capabilities );
}
```
