Server IP : 209.38.156.173 / Your IP : 216.73.216.122 [ Web Server : Apache/2.4.52 (Ubuntu) System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.22 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/wp-content/plugins/wordpress-seo/src/actions/importing/ |
Upload File : |
<?php namespace Yoast\WP\SEO\Actions\Importing; use Yoast\WP\SEO\Actions\Indexing\Limited_Indexing_Action_Interface; interface Importing_Action_Interface extends Importing_Indexation_Action_Interface, Limited_Indexing_Action_Interface { /** * Returns the name of the plugin we import from. * * @return string The plugin name. */ public function get_plugin(); /** * Returns the type of data we import. * * @return string The type of data. */ public function get_type(); /** * Whether or not this action is capable of importing given a specific plugin and type. * * @param string|null $plugin The name of the plugin being imported. * @param string|null $type The component of the plugin being imported. * * @return bool True if the action can import the given plugin's data of the given type. */ public function is_compatible_with( $plugin = null, $type = null ); }