X7ROOT File Manager
Current Path:
/home/katmhsmi/public_html/wp-content/plugins/wordpress-seo/admin
home
/
katmhsmi
/
public_html
/
wp-content
/
plugins
/
wordpress-seo
/
admin
/
📁
..
📄
admin-settings-changed-listener.php
(2.39 KB)
📁
ajax
📄
ajax.php
(11.16 KB)
📁
capabilities
📄
class-admin-asset-analysis-worker-location.php
(1.81 KB)
📄
class-admin-asset-dev-server-location.php
(1.63 KB)
📄
class-admin-asset-location.php
(488 B)
📄
class-admin-asset-manager.php
(19.67 KB)
📄
class-admin-asset-seo-location.php
(2.08 KB)
📄
class-admin-editor-specific-replace-vars.php
(6.34 KB)
📄
class-admin-gutenberg-compatibility-notification.php
(2.55 KB)
📄
class-admin-help-panel.php
(2.7 KB)
📄
class-admin-init.php
(10.71 KB)
📄
class-admin-recommended-replace-vars.php
(5.98 KB)
📄
class-admin-user-profile.php
(3.25 KB)
📄
class-admin-utils.php
(2.14 KB)
📄
class-admin.php
(12.73 KB)
📄
class-asset.php
(4.3 KB)
📄
class-bulk-description-editor-list-table.php
(2.05 KB)
📄
class-bulk-editor-list-table.php
(29.41 KB)
📄
class-bulk-title-editor-list-table.php
(2.23 KB)
📄
class-collector.php
(1005 B)
📄
class-config.php
(4.88 KB)
📄
class-database-proxy.php
(7.5 KB)
📄
class-export.php
(3.46 KB)
📄
class-expose-shortlinks.php
(8.23 KB)
📄
class-gutenberg-compatibility.php
(2.47 KB)
📄
class-meta-columns.php
(27.3 KB)
📄
class-my-yoast-proxy.php
(6.14 KB)
📄
class-option-tab.php
(2.21 KB)
📄
class-option-tabs-formatter.php
(2.84 KB)
📄
class-option-tabs.php
(2.26 KB)
📄
class-paper-presenter.php
(3.52 KB)
📄
class-plugin-availability.php
(10.06 KB)
📄
class-plugin-conflict.php
(4.04 KB)
📄
class-premium-popup.php
(2.81 KB)
📄
class-premium-upsell-admin-block.php
(5.11 KB)
📄
class-primary-term-admin.php
(7.35 KB)
📄
class-product-upsell-notice.php
(5.75 KB)
📄
class-remote-request.php
(3.13 KB)
📄
class-schema-person-upgrade-notification.php
(2.23 KB)
📄
class-suggested-plugins.php
(4.33 KB)
📄
class-wincher-dashboard-widget.php
(3.53 KB)
📄
class-yoast-columns.php
(3.52 KB)
📄
class-yoast-dashboard-widget.php
(3.96 KB)
📄
class-yoast-form.php
(35.74 KB)
📄
class-yoast-input-validation.php
(7.2 KB)
📄
class-yoast-network-admin.php
(9.97 KB)
📄
class-yoast-network-settings-api.php
(4.18 KB)
📄
class-yoast-notification-center.php
(26.06 KB)
📄
class-yoast-notification.php
(9.82 KB)
📄
class-yoast-notifications.php
(7.63 KB)
📄
class-yoast-plugin-conflict.php
(10.33 KB)
📁
endpoints
📁
exceptions
📁
filters
📁
formatter
📁
google_search_console
📁
import
📄
index.php
(38 B)
📄
interface-collection.php
(257 B)
📄
interface-installable.php
(254 B)
📁
listeners
📁
menu
📁
metabox
📁
notifiers
📁
pages
📁
roles
📁
services
📁
statistics
📁
taxonomy
📁
tracking
📁
views
📁
watchers
Editing: class-plugin-conflict.php
<?php /** * WPSEO plugin file. * * @package WPSEO\Admin * @since 1.7.0 */ use Yoast\WP\SEO\Config\Conflicting_Plugins; /** * Contains list of conflicting plugins. */ class WPSEO_Plugin_Conflict extends Yoast_Plugin_Conflict { /** * The plugins must be grouped per section. * * It's possible to check for each section if there are conflicting plugin. * * NOTE: when changing this array, be sure to update the array in Conflicting_Plugins_Service too. * * @var array<string, array<string>> */ protected $plugins = [ // The plugin which are writing OG metadata. 'open_graph' => Conflicting_Plugins::OPEN_GRAPH_PLUGINS, 'xml_sitemaps' => Conflicting_Plugins::XML_SITEMAPS_PLUGINS, 'cloaking' => Conflicting_Plugins::CLOAKING_PLUGINS, 'seo' => Conflicting_Plugins::SEO_PLUGINS, ]; /** * Overrides instance to set with this class as class. * * @param string $class_name Optional class name. * * @return Yoast_Plugin_Conflict */ public static function get_instance( $class_name = self::class ) { return parent::get_instance( $class_name ); } /** * After activating any plugin, this method will be executed by a hook. * * If the activated plugin is conflicting with ours a notice will be shown. * * @param string|bool $plugin Optional plugin basename to check. * * @return void */ public static function hook_check_for_plugin_conflicts( $plugin = false ) { // The instance of the plugin. $instance = self::get_instance(); // Only add the plugin as an active plugin if $plugin isn't false. if ( $plugin && is_string( $plugin ) ) { $instance->add_active_plugin( $instance->find_plugin_category( $plugin ), $plugin ); } $plugin_sections = []; // Only check for open graph problems when they are enabled. if ( WPSEO_Options::get( 'opengraph' ) ) { /* translators: %1$s expands to Yoast SEO, %2$s: 'Facebook' plugin name of possibly conflicting plugin with regard to creating OpenGraph output. */ $plugin_sections['open_graph'] = __( 'Both %1$s and %2$s create Open Graph output, which might make Facebook, X, LinkedIn and other social networks use the wrong texts and images when your pages are being shared.', 'wordpress-seo' ) . '<br/><br/>' . '<a class="button" href="' . admin_url( 'admin.php?page=wpseo_page_settings#/site-features#card-wpseo_social-opengraph' ) . '">' /* translators: %1$s expands to Yoast SEO. */ . sprintf( __( 'Configure %1$s\'s Open Graph settings', 'wordpress-seo' ), 'Yoast SEO' ) . '</a>'; } // Only check for XML conflicts if sitemaps are enabled. if ( WPSEO_Options::get( 'enable_xml_sitemap' ) ) { /* translators: %1$s expands to Yoast SEO, %2$s: 'Google XML Sitemaps' plugin name of possibly conflicting plugin with regard to the creation of sitemaps. */ $plugin_sections['xml_sitemaps'] = __( 'Both %1$s and %2$s can create XML sitemaps. Having two XML sitemaps is not beneficial for search engines and might slow down your site.', 'wordpress-seo' ) . '<br/><br/>' . '<a class="button" href="' . admin_url( 'admin.php?page=wpseo_page_settings#/site-features#card-wpseo-enable_xml_sitemap' ) . '">' /* translators: %1$s expands to Yoast SEO. */ . sprintf( __( 'Toggle %1$s\'s XML Sitemap', 'wordpress-seo' ), 'Yoast SEO' ) . '</a>'; } /* translators: %2$s expands to 'RS Head Cleaner' plugin name of possibly conflicting plugin with regard to differentiating output between search engines and normal users. */ $plugin_sections['cloaking'] = __( 'The plugin %2$s changes your site\'s output and in doing that differentiates between search engines and normal users, a process that\'s called cloaking. We highly recommend that you disable it.', 'wordpress-seo' ); /* translators: %1$s expands to Yoast SEO, %2$s: 'SEO' plugin name of possibly conflicting plugin with regard to the creation of duplicate SEO meta. */ $plugin_sections['seo'] = __( 'Both %1$s and %2$s manage the SEO of your site. Running two SEO plugins at the same time is detrimental.', 'wordpress-seo' ); $instance->check_plugin_conflicts( $plugin_sections ); } }
Upload File
Create Folder