Файловый менеджер - Редактировать - /home/infrafs/www/wp-content/plugins/wordpress-seo/src/actions/importing/abstract-importing-action.php
Назад
<?php namespace Yoast\WP\SEO\Actions\Importing; use Exception; use Yoast\WP\SEO\Actions\Indexing\Indexation_Action_Interface; use Yoast\WP\SEO\Actions\Indexing\Limited_Indexing_Action_Interface; /** * Importing action interface. */ abstract class Abstract_Importing_Action implements Importing_Action_Interface { /** * The plugin the class deals with. * * @var string */ const PLUGIN = null; /** * The type the class deals with. * * @var string */ const TYPE = null; /** * The name of the plugin we import from. * * @return string The plugin we import from. * * @throws Exception If the PLUGIN constant is not set in the child class. */ public function get_plugin() { $class = get_class( $this ); $plugin = $class::PLUGIN; if ( $plugin === null ) { throw new Exception( 'Importing action without explicit plugin' ); } return $plugin; } /** * The data type we import from the plugin. * * @return string The data type we import from the plugin. * * @throws Exception If the TYPE constant is not set in the child class. */ public function get_type() { $class = get_class( $this ); $type = $class::TYPE; if ( $type === null ) { throw new Exception( 'Importing action without explicit type' ); } return $type; } /** * Gets the cursor id. * * @return string The cursor id. */ protected function get_cursor_id() { $class = get_class( $this ); return $class::PLUGIN . '_' . $class::TYPE; } /** * Creates a query for gathering to-be-imported data from the database. * * @return string The query to use for importing or counting the number of items to import. */ abstract public function query(); }
| ver. 1.4 |
Github
|
.
| PHP 8.2.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка