first commit
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
namespace Yoast\WP\SEO\Presenters\Admin\Prominent_Words;
|
||||
|
||||
use Yoast\WP\SEO\Presenters\Abstract_Presenter;
|
||||
|
||||
/**
|
||||
* Represents the list item presenter for the prominent words indexing.
|
||||
*
|
||||
* @deprecated 15.1
|
||||
* @codeCoverageIgnore
|
||||
*
|
||||
* @package Yoast\WP\SEO\Presentations\Admin
|
||||
*/
|
||||
class Indexation_List_Item_Presenter extends Abstract_Presenter {
|
||||
|
||||
/**
|
||||
* Prominent_Words_Indexation_List_Item_Presenter 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' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the output as string.
|
||||
*
|
||||
* @deprecated 15.1
|
||||
* @codeCoverageIgnore
|
||||
*
|
||||
* @return string The output.
|
||||
*/
|
||||
public function present() {
|
||||
\_deprecated_function( __METHOD__, 'WPSEO 15.1' );
|
||||
return '';
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
namespace Yoast\WP\SEO\Presenters\Admin\Prominent_Words;
|
||||
|
||||
use Yoast\WP\SEO\Presenters\Abstract_Presenter;
|
||||
|
||||
/**
|
||||
* Class Indexation_Modal_Presenter.
|
||||
*
|
||||
* @deprecated 15.1
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
class Indexation_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 '';
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
namespace Yoast\WP\SEO\Presenters;
|
||||
|
||||
/**
|
||||
* Class Prominent_Words_Notification_Presenter
|
||||
*
|
||||
* @deprecated 15.1
|
||||
* @codeCoverageIgnore
|
||||
*
|
||||
* @package Yoast\WP\SEO\Presenters
|
||||
*/
|
||||
class Prominent_Words_Notification extends Abstract_Presenter {
|
||||
|
||||
/**
|
||||
* Presents the notification.
|
||||
*
|
||||
* @deprecated 15.1
|
||||
* @codeCoverageIgnore
|
||||
*
|
||||
* @return string The notification.
|
||||
*/
|
||||
public function present() {
|
||||
\_deprecated_function( __METHOD__, 'WPSEO 15.1' );
|
||||
return '';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user