Source: blocks/class-block.php

  1. <?php
  2. /**
  3. * Abstract block.
  4. *
  5. * @package HivePress\Blocks
  6. */
  7. namespace HivePress\Blocks;
  8. use HivePress\Helpers as hp;
  9. use HivePress\Traits;
  10. // Exit if accessed directly.
  11. defined( 'ABSPATH' ) || exit;
  12. /**
  13. * Abstract block class.
  14. */
  15. abstract class Block {
  16. use Traits\Mutator;
  17. use Traits\Context;
  18. use Traits\Meta {
  19. set_meta as _set_meta;
  20. }
  21. /**
  22. * Block arguments.
  23. *
  24. * @var array
  25. */
  26. protected $args = [];
  27. /**
  28. * Block name.
  29. *
  30. * @var string
  31. */
  32. protected $name;
  33. /**
  34. * Class initializer.
  35. *
  36. * @param array $meta Class meta values.
  37. */
  38. public static function init( $meta = [] ) {
  39. $meta = hp\merge_arrays(
  40. [
  41. 'name' => hp\get_class_name( static::class ),
  42. 'settings' => [],
  43. ],
  44. $meta
  45. );
  46. // Filter meta.
  47. foreach ( hp\get_class_parents( static::class ) as $class ) {
  48. /**
  49. * Filters the block class meta. The class meta stores properties related to the block type rather than a specific block instance. For example, it stores the block settings displayed in the editor. The dynamic part of the hook refers to the block type (e.g. `listings`). You can check the available block types in the `includes/blocks` directory of HivePress.
  50. *
  51. * @hook hivepress/v1/blocks/{block_type}/meta
  52. * @param {array} $meta Class meta values.
  53. * @return {array} Class meta values.
  54. */
  55. $meta = apply_filters( 'hivepress/v1/blocks/' . hp\get_class_name( $class ) . '/meta', $meta );
  56. }
  57. // Set meta.
  58. static::set_meta( $meta );
  59. }
  60. /**
  61. * Class constructor.
  62. *
  63. * @param array $args Block arguments.
  64. */
  65. public function __construct( $args = [] ) {
  66. // Filter properties.
  67. foreach ( hp\get_class_parents( static::class ) as $class ) {
  68. /**
  69. * Filters the block properties. The dynamic part of the hook refers to the block type (e.g. `listings`). You can check the available block types in the `includes/blocks` directory of HivePress.
  70. *
  71. * @hook hivepress/v1/blocks/{block_type}
  72. * @param {array} $props Block properties.
  73. * @param {object} $block Block object.
  74. * @return {array} Block properties.
  75. */
  76. $args = apply_filters( 'hivepress/v1/blocks/' . hp\get_class_name( $class ), $args, $this );
  77. }
  78. // Set arguments.
  79. $this->args = $args;
  80. // Set properties.
  81. foreach ( $args as $name => $value ) {
  82. $this->set_property( $name, $value );
  83. }
  84. // Bootstrap properties.
  85. $this->boot();
  86. }
  87. /**
  88. * Bootstraps block properties.
  89. */
  90. protected function boot() {}
  91. /**
  92. * Sets class meta values.
  93. *
  94. * @param array $meta Meta values.
  95. */
  96. final protected static function set_meta( $meta ) {
  97. // Set settings.
  98. $settings = array_filter( hp\get_array_value( $meta, 'settings', [] ) );
  99. if ( $settings ) {
  100. $meta['settings'] = [];
  101. foreach ( hp\sort_array( $settings ) as $name => $args ) {
  102. // Create field.
  103. $field = hp\create_class_instance( '\HivePress\Fields\\' . $args['type'], [ array_merge( $args, [ 'name' => $name ] ) ] );
  104. // Add field.
  105. if ( $field ) {
  106. $meta['settings'][ $name ] = $field;
  107. }
  108. }
  109. }
  110. static::_set_meta( $meta );
  111. }
  112. /**
  113. * Sets object context value.
  114. *
  115. * @param string $name Context name.
  116. * @param mixed $value Context value.
  117. */
  118. final protected function set_context( $name, $value = null ) {
  119. if ( is_array( $name ) ) {
  120. $this->context = $name;
  121. // @todo remove when optimized globally.
  122. unset( $this->args['context'] );
  123. } else {
  124. $this->context[ $name ] = $value;
  125. }
  126. }
  127. /**
  128. * Get block arguments.
  129. *
  130. * @return array
  131. */
  132. final public function get_args() {
  133. return $this->args;
  134. }
  135. /**
  136. * Gets block argument.
  137. *
  138. * @param string $name Argument name.
  139. * @return mixed
  140. */
  141. final public function get_arg( $name ) {
  142. return hp\get_array_value( $this->args, $name );
  143. }
  144. /**
  145. * Renders block HTML.
  146. *
  147. * @return string
  148. */
  149. abstract public function render();
  150. }