Your IP : 216.73.216.162


Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/
Upload File :
Current File : /home/x/b/o/xbodynamge/namtation/wp-content/class-base-block.php.tar

wp-content/plugins/themeisle-companion/vendor/codeinwp/gutenberg-blocks/class-base-block.php000060400000004253151150541620034336 0ustar00home/xbodynamge/crosstraining<?php

namespace ThemeIsle\GutenbergBlocks;

/**
 * Class Base_Block
 *
 * @package Gutenberg Blocks
 */
abstract class Base_Block {

	/**
	 * The namespace under which the blocks are registered.
	 *
	 * @var string
	 */
	private $block_prefix = 'themeisle-blocks';

	/**
	 * The slug of the block.
	 *
	 * @var null
	 */
	protected $block_slug = null;

	/**
	 * Block attributes handled on the server side.
	 *
	 * @var null
	 */
	protected $attributes = array();

	/**
	 * Every block needs a slug, so we need to define one and assign it to the `$this->block_slug` property
	 *
	 * @return mixed
	 */
	abstract function set_block_slug();

	/**
	 * Set the attributes required on the server side.
	 *
	 * @return mixed
	 */
	abstract function set_attributes();

	/**
	 * This method will pe passed to the render_callback parameter and it will output
	 * the server side output of the block.
	 *
	 * @return mixed
	 */
	abstract function render( $attributes );

	/**
	 * Base_Block constructor.
	 */
	public function __construct() {
		$this->set_block_slug();
		$this->set_attributes();
	}

	/**
	 * Returns the block slug.
	 *
	 * @return null
	 */
	public function get_block_slug() {
		return $this->block_slug;
	}

	/**
	 * Returns the block attributes.
	 * The result is also filtered via `themeisle_gutenberg_block_attributes_for_{$this->block_slug}` filter.
	 *
	 * @return array
	 */
	public function get_attributes() {
		return apply_filters( 'themeisle_gutenberg_block_attributes_for_$this->block_slug', $this->attributes );
	}

	/**
	 * Based on the given arguments given on construction we'll build a Gutenberg Block.
	 */
	public function register_block() {
		\register_block_type(
			$this->block_prefix . '/' . $this->block_slug,
			array(
				'render_callback' => array( $this, 'render_callback' ),
				'attributes'      => $this->get_attributes(),
			)
		);
	}

	/**
	 * The render callback passed to the `register_block_type` function.
	 *
	 * @return string
	 */
	public function render_callback( $attributes ) {
		// give a chance to our themes to overwrite the template of blocks
		return apply_filters( 'themeisle_gutenberg_block_template_{$this->block_slug}', $this->render( $attributes ) );
	}
}
dev/wp-content/plugins/themeisle-companion/vendor/codeinwp/gutenberg-blocks/class-base-block.php000064400000004253151154170200032227 0ustar00home/xbodynamge<?php

namespace ThemeIsle\GutenbergBlocks;

/**
 * Class Base_Block
 *
 * @package Gutenberg Blocks
 */
abstract class Base_Block {

	/**
	 * The namespace under which the blocks are registered.
	 *
	 * @var string
	 */
	private $block_prefix = 'themeisle-blocks';

	/**
	 * The slug of the block.
	 *
	 * @var null
	 */
	protected $block_slug = null;

	/**
	 * Block attributes handled on the server side.
	 *
	 * @var null
	 */
	protected $attributes = array();

	/**
	 * Every block needs a slug, so we need to define one and assign it to the `$this->block_slug` property
	 *
	 * @return mixed
	 */
	abstract function set_block_slug();

	/**
	 * Set the attributes required on the server side.
	 *
	 * @return mixed
	 */
	abstract function set_attributes();

	/**
	 * This method will pe passed to the render_callback parameter and it will output
	 * the server side output of the block.
	 *
	 * @return mixed
	 */
	abstract function render( $attributes );

	/**
	 * Base_Block constructor.
	 */
	public function __construct() {
		$this->set_block_slug();
		$this->set_attributes();
	}

	/**
	 * Returns the block slug.
	 *
	 * @return null
	 */
	public function get_block_slug() {
		return $this->block_slug;
	}

	/**
	 * Returns the block attributes.
	 * The result is also filtered via `themeisle_gutenberg_block_attributes_for_{$this->block_slug}` filter.
	 *
	 * @return array
	 */
	public function get_attributes() {
		return apply_filters( 'themeisle_gutenberg_block_attributes_for_$this->block_slug', $this->attributes );
	}

	/**
	 * Based on the given arguments given on construction we'll build a Gutenberg Block.
	 */
	public function register_block() {
		\register_block_type(
			$this->block_prefix . '/' . $this->block_slug,
			array(
				'render_callback' => array( $this, 'render_callback' ),
				'attributes'      => $this->get_attributes(),
			)
		);
	}

	/**
	 * The render callback passed to the `register_block_type` function.
	 *
	 * @return string
	 */
	public function render_callback( $attributes ) {
		// give a chance to our themes to overwrite the template of blocks
		return apply_filters( 'themeisle_gutenberg_block_template_{$this->block_slug}', $this->render( $attributes ) );
	}
}