PluginProbe
Yoast SEO – Advanced SEO with real-time guidance and built-in AI / 18.4
Yoast SEO – Advanced SEO with real-time guidance and built-in AI v18.4
28.5 28.4 28.3 28.2 28.1 28.0 27.9 27.8 27.7 27.6 27.5 trunk 18.0 18.1 18.2 18.3 18.4 18.4.1 18.5 18.5.1 18.6 18.7 18.8 18.9 19.0 All 129 releases
wordpress-seo / src / deprecated / src / presenters / admin / indexation-modal-presenter.php

indexation-modal-presenter.php in Yoast SEO – Advanced SEO with real-time guidance and built-in AI 18.4, at src/deprecated/src/presenters/admin/indexation-modal-presenter.php

41 lines 767 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Yoast\WP\SEO\Presenters\Admin;
4
5 use Yoast\WP\SEO\Presenters\Abstract_Presenter;
6
7 /**
8 * Presenter class for the indexation modal.
9 *
10 * @deprecated 15.1
11 * @codeCoverageIgnore
12 */
13 class Indexation_Modal_Presenter extends Abstract_Presenter {
14
15 /**
16 * Indexation_Modal constructor.
17 *
18 * @deprecated 15.1
19 * @codeCoverageIgnore
20 *
21 * @param int $total_unindexed The number of objects that need to be indexed.
22 */
23 public function __construct( $total_unindexed ) {
24 \_deprecated_function( __METHOD__, 'WPSEO 15.1' );
25 }
26
27 /**
28 * Presents the modal.
29 *
30 * @deprecated 15.1
31 * @codeCoverageIgnore
32 *
33 * @return string The modal HTML.
34 */
35 public function present() {
36 \_deprecated_function( __METHOD__, 'WPSEO 15.1' );
37
38 return '';
39 }
40 }
41