# ultimate-post/5.0.41/addons/bricks_builder/bricksbuilder.php

Post Grid Gutenberg Blocks – PostX, version 5.0.41. 70 lines.

- Page: https://pluginprobe.com/plugins/ultimate-post/5.0.41/code/addons/bricks_builder/bricksbuilder.php
- Raw: https://pluginprobe.com/plugins/ultimate-post/5.0.41/raw/addons/bricks_builder/bricksbuilder.php
- Modified: 2026-09-16T12:17:26+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ultimate-post/5.0.41/code/addons/bricks_builder/bricksbuilder.php#L10-L20`.

```php
<?php

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

class PostX_Bricks_Integration extends \Bricks\Element {
	// Element properties
	public $category = 'general';
	public $name     = 'postx-addon';
	public $icon     = 'ti-layout-grid2';

	// Return localised element label
	public function get_label() {
		return esc_html__( 'PostX Template', 'ultimate-post' );
	}

	// Set builder controls
	public function set_controls() {
		$this->controls['template']  = array(
			'type'        => 'select',
			'label'       => esc_html__( 'Select Template', 'ultimate-post' ),
			'options'     => ultimate_post()->get_all_lists( 'ultp_templates' ),
			'clearable'   => false,
			'default'     => '',
			'pasteStyles' => true,
			'inline'      => true,
		);
		$this->controls['separator'] = array(
			'type' => 'separator',
		);
		$this->controls['help']      = array(
			'type'    => 'info',
			'content' => 'Pick a Template from your saved ones. Or create a template from: <strong><i>Dashboard > PostX > Saved Templates</i></strong>',
		);
	}

	// Render element HTML
	public function render() {
		$id             = $this->settings['template'];
		$root_classes[] = 'bricks-postx-wrapper';
		$this->set_attribute( '_root', 'class', $root_classes );

		$current_url = isset( $_SERVER['REQUEST_URI'] ) ? esc_url( $_SERVER['REQUEST_URI'] ) : ''; //phpcs:ignore

		// Render element HTML
		echo "<div {$this->render_attributes( '_root' )}>"; //phpcs:ignore
		if ( $id ) {
			echo ultimate_post()->build_css_for_inline_print( $id, true );
			echo '<div class="ultp-shortcode" data-postid="' . esc_attr( $id ) . '">';
				$args      = array(
					'p'         => $id,
					'post_type' => 'ultp_templates',
				);
				$the_query = new \WP_Query( $args );
				if ( $the_query->have_posts() ) {
					while ( $the_query->have_posts() ) {
						$the_query->the_post();
						the_content();
					}
					wp_reset_postdata();
				}
				echo '</div>';
		} elseif ( strpos( 'bricks=run', $current_url ) !== false || strpos( $current_url, 'bricks/v1/render_element' ) !== false ) {
				echo '<p style="text-align:center; font-size: 20px;">' . sprintf( esc_html__( 'Pick a Template from your saved ones. Or create a template from: %s.', 'ultimate-post' ) . ' ', '<strong><i>' . esc_html__( 'Dashboard > PostX > Saved Templates', 'ultimate-post' ) . '</i></strong>' ) . '</p>';
		}
		echo '</div>';
	}
}

```
