📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 15:54:04
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
members
/
addons
/
members-acf-integration
/
src
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/members/addons/members-acf-integration/src
🔄 Refresh
✏️
Editing: Activator.php
Writable
<?php /** * Plugin Activator. * * Runs the plugin activation routine. * * @package MembersIntegrationACF * @author Justin Tadlock <justintadlock@gmail.com> * @copyright 2019, Justin Tadlock * @link https://themehybrid.com/plugins/members-acf-integration * @license https://www.gnu.org/licenses/gpl-2.0.html GPL-2.0-or-later */ namespace Members\Integration\ACF; /** * Activator class. * * @since 1.0.0 * @access public */ class Activator { /** * Runs necessary code when first activating the plugin. * * @since 1.0.0 * @access public * @return void */ public static function activate() { // Get the administrator role. $role = get_role( 'administrator' ); // If the administrator role exists, add required capabilities // for the plugin. if ( ! empty( $role ) ) { $role->add_cap( 'manage_acf' ); $role->add_cap( 'edit_acf_field_groups' ); $role->add_cap( 'edit_others_acf_field_groups' ); $role->add_cap( 'delete_acf_field_groups' ); $role->add_cap( 'delete_others_acf_field_groups' ); } } }
💾 Save Changes
❌ Cancel