Yoast\WP\SEO\Presenters\Admin
Link_Count_Indexing_Modal_Presenter{}
Устарела с версии 15.1. Больше не поддерживается и может быть удалена. Рекомендуется заменить эту функцию на аналог.
Presenter class for the link count indexing modal.
Хуков нет.
Использование
$Link_Count_Indexing_Modal_Presenter = new Link_Count_Indexing_Modal_Presenter(); // use class methods
Методы
- public __construct( $total_unindexed )
- public present()
Список изменений
Устарела с | 15.1 |
Код Link_Count_Indexing_Modal_Presenter{} Link Count Indexing Modal Presenter{} Yoast 18.8
class Link_Count_Indexing_Modal_Presenter extends Abstract_Presenter { /** * Indexation_Modal constructor. * * @deprecated 15.1 * @codeCoverageIgnore * * @param int $total_unindexed The number of objects that need to be indexed. */ public function __construct( $total_unindexed ) { \_deprecated_function( __METHOD__, 'WPSEO 15.1' ); } /** * Presents the modal. * * @deprecated 15.1 * @codeCoverageIgnore * * @return string The modal HTML. */ public function present() { \_deprecated_function( __METHOD__, 'WPSEO 15.1' ); return ''; } }