first commit

This commit is contained in:
Rachit Bhargava
2023-07-21 17:12:10 -04:00
parent d0fe47dde4
commit 5d0f0734d8
14003 changed files with 2829464 additions and 0 deletions

View File

@@ -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 '';
}
}

View File

@@ -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 '';
}
}

View File

@@ -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 '';
}
}