📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 19:16:30
📂
/ (Root)
/
home
/
apkbfjox
/
x03bet.cloud
/
wp-content
/
plugins
/
seo-by-rank-math
/
includes
/
abilities
📍 /home/apkbfjox/x03bet.cloud/wp-content/plugins/seo-by-rank-math/includes/abilities
🔄 Refresh
✏️
Editing: interface-ability.php
Writable
<?php /** * Interface for Rank Math abilities. * * @since 1.0.271 * @package RankMath * @subpackage RankMath\Abilities * @author Rank Math <support@rankmath.com> */ namespace RankMath\Abilities; defined( 'ABSPATH' ) || exit; /** * Ability interface. */ interface Ability_Interface { /** * Register the ability with the WordPress Abilities API. * * @return void */ public function register(): void; /** * Check if the current user has permission to execute this ability. * * @return bool */ public function check_permissions(): bool; /** * Execute the ability. * * @param array $input Ability input arguments. * @return array */ public function execute( array $input = [] ): array; }
💾 Save Changes
❌ Cancel