class-aawp-ad.php
1 week ago
class-aawp.php
1 year ago
class-admin-compatibility.php
1 week ago
class-capability-manager.php
1 year ago
class-compatibility.php
1 week ago
class-inline-js.php
1 year ago
class-peepso-ad.php
1 week ago
class-peepso.php
1 week ago
class-capability-manager.php
158 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Integrates Advanced Ads capabilities with third party role manager plugins. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 1.50.0 |
| 8 | */ |
| 9 | |
| 10 | namespace AdvancedAds\Compatibility; |
| 11 | |
| 12 | use AdvancedAds\Constants; |
| 13 | use AdvancedAds\Installation\Capabilities; |
| 14 | use AdvancedAds\Framework\Interfaces\Integration_Interface; |
| 15 | |
| 16 | defined( 'ABSPATH' ) || exit; |
| 17 | |
| 18 | /** |
| 19 | * Capability Manager. |
| 20 | * |
| 21 | * Integrates with: Members |
| 22 | * Integrates with: User Role Editor |
| 23 | * Integrates with: PublishPress Capabilities |
| 24 | */ |
| 25 | class Capability_Manager implements Integration_Interface { |
| 26 | |
| 27 | /** |
| 28 | * Group name. |
| 29 | * |
| 30 | * @var string |
| 31 | */ |
| 32 | const GROUP = 'advanced-ads'; |
| 33 | |
| 34 | /** |
| 35 | * Capability manager. |
| 36 | * |
| 37 | * @var Capabilities |
| 38 | */ |
| 39 | private $capability_manager = null; |
| 40 | |
| 41 | /** |
| 42 | * Hook into WordPress. |
| 43 | * |
| 44 | * @return void |
| 45 | */ |
| 46 | public function hooks(): void { |
| 47 | $this->capability_manager = new Capabilities(); |
| 48 | |
| 49 | // Integrates with: Members. |
| 50 | add_action( 'members_register_caps', [ $this, 'register_members_caps' ] ); |
| 51 | add_action( 'members_register_cap_groups', [ $this, 'register_members_groups' ] ); |
| 52 | |
| 53 | // Integrates with: User Role Editor. |
| 54 | add_filter( 'ure_capabilities_groups_tree', [ $this, 'register_ure_groups' ] ); |
| 55 | add_filter( 'ure_custom_capability_groups', [ $this, 'register_ure_caps' ], 10, 2 ); |
| 56 | |
| 57 | // Integrates with: PublishPress Capabilities. |
| 58 | add_filter( 'cme_plugin_capabilities', [ $this, 'register_publishpress_caps' ] ); |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * Get the name of the integration. |
| 63 | * |
| 64 | * @return string |
| 65 | */ |
| 66 | public function get_name(): string { |
| 67 | return __( 'Advanced Ads', 'advanced-ads' ); |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * Register Members groups. |
| 72 | * |
| 73 | * @return void |
| 74 | */ |
| 75 | public function register_members_groups(): void { |
| 76 | members_register_cap_group( |
| 77 | self::GROUP, |
| 78 | [ |
| 79 | 'label' => $this->get_name(), |
| 80 | 'priority' => 10, |
| 81 | 'icon' => 'dashicons-editor-textcolor', |
| 82 | 'caps' => array_keys( $this->capability_manager->get_capabilities() ), |
| 83 | ] |
| 84 | ); |
| 85 | |
| 86 | // Remove post types groups. |
| 87 | members_unregister_cap_group( 'type-' . Constants::POST_TYPE_AD ); |
| 88 | members_unregister_cap_group( 'type-' . Constants::POST_TYPE_PLACEMENT ); |
| 89 | } |
| 90 | |
| 91 | /** |
| 92 | * Register members capabilities. |
| 93 | * |
| 94 | * @return void |
| 95 | */ |
| 96 | public function register_members_caps(): void { |
| 97 | $capabilities = $this->capability_manager->get_capabilities(); |
| 98 | foreach ( $capabilities as $cap => $label ) { |
| 99 | members_register_cap( |
| 100 | $cap, |
| 101 | [ |
| 102 | 'label' => $label, |
| 103 | 'group' => self::GROUP, |
| 104 | ] |
| 105 | ); |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * Register URE groups. |
| 111 | * |
| 112 | * @param array $groups Groups. |
| 113 | * |
| 114 | * @return array |
| 115 | */ |
| 116 | public function register_ure_groups( array $groups ): array { |
| 117 | $groups = (array) $groups; |
| 118 | |
| 119 | $groups[ self::GROUP ] = [ |
| 120 | 'caption' => $this->get_name(), |
| 121 | 'parent' => 'custom', |
| 122 | 'level' => 2, |
| 123 | ]; |
| 124 | |
| 125 | return $groups; |
| 126 | } |
| 127 | |
| 128 | /** |
| 129 | * Register URE capabilities. |
| 130 | * |
| 131 | * @param array $groups Current capability groups. |
| 132 | * @param string $cap_id Capability identifier. |
| 133 | * |
| 134 | * @return array |
| 135 | */ |
| 136 | public function register_ure_caps( $groups, $cap_id ): array { |
| 137 | if ( array_key_exists( $cap_id, $this->capability_manager->get_capabilities() ) ) { |
| 138 | $groups = (array) $groups; |
| 139 | $groups[] = self::GROUP; |
| 140 | } |
| 141 | |
| 142 | return $groups; |
| 143 | } |
| 144 | |
| 145 | /** |
| 146 | * Register PublishPress capabilities. |
| 147 | * |
| 148 | * @param array $caps Capabilities. |
| 149 | * |
| 150 | * @return array |
| 151 | */ |
| 152 | public function register_publishpress_caps( array $caps ): array { |
| 153 | $caps[ $this->get_name() ] = array_keys( $this->capability_manager->get_capabilities() ); |
| 154 | |
| 155 | return $caps; |
| 156 | } |
| 157 | } |
| 158 |