Linux heracles.o2switch.net 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64
/
home
/
ophq1335
/
www
/
wp-content
/
plugins
/
wp-seopress
/
src
/
Services
/
Settings
/
/home/ophq1335/www/wp-content/plugins/wp-seopress/src/Services/Settings/ExportSettings.php
<?php // phpcs:ignore namespace SEOPress\Services\Settings; /** * ExportSettings */ class ExportSettings { /** * The handle function. * * @return array */ public function handle() { $data = array(); $data['seopress_activated'] = get_option( 'seopress_activated' ); $data['seopress_titles_option_name'] = get_option( 'seopress_titles_option_name' ); $data['seopress_social_option_name'] = get_option( 'seopress_social_option_name' ); $data['seopress_google_analytics_option_name'] = get_option( 'seopress_google_analytics_option_name' ); $data['seopress_advanced_option_name'] = get_option( 'seopress_advanced_option_name' ); $data['seopress_xml_sitemap_option_name'] = get_option( 'seopress_xml_sitemap_option_name' ); $data['seopress_pro_option_name'] = get_option( 'seopress_pro_option_name' ); $data['seopress_pro_mu_option_name'] = get_option( 'seopress_pro_mu_option_name' ); $data['seopress_pro_license_key'] = get_option( 'seopress_pro_license_key' ); $data['seopress_pro_license_status'] = get_option( 'seopress_pro_license_status' ); $data['seopress_bot_option_name'] = get_option( 'seopress_bot_option_name' ); $data['seopress_toggle'] = get_option( 'seopress_toggle' ); $data['seopress_google_analytics_lock_option_name'] = get_option( 'seopress_google_analytics_lock_option_name' ); $data['seopress_tools_option_name'] = get_option( 'seopress_tools_option_name' ); $data['seopress_dashboard_option_name'] = get_option( 'seopress_dashboard_option_name' ); $data['seopress_instant_indexing_option_name'] = get_option( 'seopress_instant_indexing_option_name' ); return $data; } }