BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
.
/
seo-by-rank-math
/
includes
/
admin
📤 Upload
📝 New File
📁 New Folder
Close
Editing: class-register-options-page.php
<?php /** * The option page functionality of the plugin. * * @since 1.0.250 * @package RankMath * @subpackage RankMath\Admin * @author Rank Math <support@rankmath.com> */ namespace RankMath\Admin; use RankMath\Helper; defined( 'ABSPATH' ) || exit; /** * Register_Options_Page class. */ class Register_Options_Page { /** * The Constructor * * @param array $config Array of configuration. */ public function __construct( $config ) { if ( ! Helper::is_react_enabled() ) { new CMB2_Options( $config ); return; } $options_page = new Options( $config ); $options_page->register_option_page(); } }
Save
Cancel