| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| Current File : /home/x/b/o/xbodynamge/namtation/wp-content/abstract-dynamic-block.php.tar |
xbodynamge/www/wp-content/plugins/wordpress-seo/src/integrations/blocks/abstract-dynamic-block.php 0000644 00000002365 15114523112 0030572 0 ustar 00 home <?php
namespace Yoast\WP\SEO\Integrations\Blocks;
use Yoast\WP\SEO\Integrations\Integration_Interface;
/**
* Dynamic_Block class.
*/
abstract class Dynamic_Block implements Integration_Interface {
/**
* The name of the block.
*
* @var string
*/
protected $block_name;
/**
* The editor script for the block.
*
* @var string
*/
protected $script;
/**
* {@inheritDoc}
*/
public static function get_conditionals() {
return [];
}
/**
* {@inheritDoc}
*/
public function register_hooks() {
\add_action( 'init', [ $this, 'register_block' ], 11 );
}
/**
* Registers the block.
*
* @return void
*/
public function register_block() {
\register_block_type(
'yoast-seo/' . $this->block_name,
[
'editor_script' => $this->script,
'render_callback' => [ $this, 'present' ],
'attributes' => [
'className' => [
'default' => '',
'type' => 'string',
],
],
]
);
}
/**
* 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 );
}
namtation/wp-content/plugins/wordpress-seo/src/integrations/blocks/abstract-dynamic-block.php 0000644 00000002365 15115020247 0031742 0 ustar 00 home/xbodynamge <?php
namespace Yoast\WP\SEO\Integrations\Blocks;
use Yoast\WP\SEO\Integrations\Integration_Interface;
/**
* Dynamic_Block class.
*/
abstract class Dynamic_Block implements Integration_Interface {
/**
* The name of the block.
*
* @var string
*/
protected $block_name;
/**
* The editor script for the block.
*
* @var string
*/
protected $script;
/**
* {@inheritDoc}
*/
public static function get_conditionals() {
return [];
}
/**
* {@inheritDoc}
*/
public function register_hooks() {
\add_action( 'init', [ $this, 'register_block' ], 11 );
}
/**
* Registers the block.
*
* @return void
*/
public function register_block() {
\register_block_type(
'yoast-seo/' . $this->block_name,
[
'editor_script' => $this->script,
'render_callback' => [ $this, 'present' ],
'attributes' => [
'className' => [
'default' => '',
'type' => 'string',
],
],
]
);
}
/**
* 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 );
}
lebauwcentre/wp-content/plugins/wordpress-seo/src/integrations/blocks/abstract-dynamic-block.php 0000644 00000002365 15115054721 0032434 0 ustar 00 home/xbodynamge <?php
namespace Yoast\WP\SEO\Integrations\Blocks;
use Yoast\WP\SEO\Integrations\Integration_Interface;
/**
* Dynamic_Block class.
*/
abstract class Dynamic_Block implements Integration_Interface {
/**
* The name of the block.
*
* @var string
*/
protected $block_name;
/**
* The editor script for the block.
*
* @var string
*/
protected $script;
/**
* {@inheritDoc}
*/
public static function get_conditionals() {
return [];
}
/**
* {@inheritDoc}
*/
public function register_hooks() {
\add_action( 'init', [ $this, 'register_block' ], 11 );
}
/**
* Registers the block.
*
* @return void
*/
public function register_block() {
\register_block_type(
'yoast-seo/' . $this->block_name,
[
'editor_script' => $this->script,
'render_callback' => [ $this, 'present' ],
'attributes' => [
'className' => [
'default' => '',
'type' => 'string',
],
],
]
);
}
/**
* 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 );
}