Indonesian music spam? I don’t think so.
-
This is the one of the 100 files it’s complaining about.
Filename: /home/scohor8/northshoreindivisible.com/wp-content/plugins/wordpress-seo/admin/config-ui/class-configuration-components.php File Size: 1,694 bytes File last modified: Thursday 2nd of May 2019 05:26:11 PM <?php /** * WPSEO plugin file. * * @package WPSEO\Admin\ConfigurationUI */ /** * Class WPSEO_Configuration_Components. */ class WPSEO_Configuration_Components { /** * List of registered components. * * @var WPSEO_Config_Component[] */ protected $components = array(); /** * Adapter. * * @var WPSEO_Configuration_Options_Adapter */ protected $adapter; /** * Add default components. */ public function initialize() { $this->add_component( new WPSEO_Config_Component_Connect_Google_Search_Console() ); $this->add_component( new WPSEO_Config_Component_Mailchimp_Signup() ); $this->add_component( new WPSEO_Config_Component_Suggestions() ); } /** * Add a component. * * @param WPSEO_Config_Component $component Component to add. */ public function add_component( WPSEO_Config_Component $component ) { $this->components[] = $component; } /** * Sets the storage to use. * * @param WPSEO_Configuration_Storage $storage Storage to use. */ public function set_storage( WPSEO_Configuration_Storage $storage ) { $this->set_adapter( $storage->get_adapter() ); foreach ( $this->components as $component ) { $storage->add_field( $component->get_field() ); } } /** * Sets the adapter to use. * * @param WPSEO_Configuration_Options_Adapter $adapter Adapter to use. */ public function set_adapter( WPSEO_Configuration_Options_Adapter $adapter ) { $this->adapter = $adapter; foreach ( $this->components as $component ) { $adapter->add_custom_lookup( $component->get_field()->get_identifier(), array( $component, 'get_data', ), array( $component, 'set_data', ) ); } } }
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Indonesian music spam? I don’t think so.’ is closed to new replies.