You appear to be a bot. Output may be restricted
Description
The name of the plugin we import from.
Usage
$string = Abstract_Aioseo_Importing_Action::get_plugin();
Parameters
Returns
string The plugin we import from.
Source
File name: wordpress-seo/src/actions/importing/abstract-aioseo-importing-action.php
Lines:
1 to 10 of 10
public function get_plugin() { $class = \get_class( $this ); $plugin = $class::PLUGIN; if ( $plugin === null ) { throw new Exception( 'Importing action without explicit plugin' ); } return $plugin; }