# ablocks/2.9.0/includes/blocks/loop-builder/block.php

aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder &amp; Animation Builder, version 2.9.0. 24 lines.

- Page: https://pluginprobe.com/plugins/ablocks/2.9.0/code/includes/blocks/loop-builder/block.php
- Raw: https://pluginprobe.com/plugins/ablocks/2.9.0/raw/includes/blocks/loop-builder/block.php
- Modified: 2025-07-14T14:48:20+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/ablocks/2.9.0/code/includes/blocks/loop-builder/block.php#L10-L20`.

```php
<?php
namespace ABlocks\Blocks\LoopBuilder;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

use ABlocks\Classes\BlockBaseAbstract;
use ABlocks\Classes\CssGenerator;

class Block extends BlockBaseAbstract {
	protected $block_name = 'loop-builder';

	public function build_css( $attributes ) {
		// Generate CSS start
		$css_generator = new CssGenerator( $attributes );
		return $css_generator->generate_css();
	}

	public function render_block_content( $attributes, $content, $block ) {
		return $content;
	}
}

```
