: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
namespace Yoast\WP\SEO\Integrations\Blocks;
use Yoast\WP\SEO\Integrations\Integration_Interface;
abstract class Dynamic_Block implements Integration_Interface {
* The editor script for the block.
public static function get_conditionals() {
public function register_hooks() {
\add_action( 'init', [ $this, 'register_block' ], 11 );
public function register_block() {
'yoast-seo/' . $this->block_name,
'editor_script' => $this->script,
'render_callback' => [ $this, 'present' ],
* Presents the block output. This is abstract because in the loop we need to be able to build the data for the
* presenter in the last moment.
* @param array $attributes The block attributes.
* @return string The block output.
abstract public function present( $attributes );