| 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 |
|