# getwid/2.0.7/includes/blocks/testimonial.php

Getwid – Gutenberg Blocks, version 2.0.7. 59 lines.

- Page: https://pluginprobe.com/plugins/getwid/2.0.7/code/includes/blocks/testimonial.php
- Raw: https://pluginprobe.com/plugins/getwid/2.0.7/raw/includes/blocks/testimonial.php
- Modified: 2023-01-26T14:09:38+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/getwid/2.0.7/code/includes/blocks/testimonial.php#L10-L20`.

```php
<?php

namespace Getwid\Blocks;

class Testimonial extends \Getwid\Blocks\AbstractBlock {

	protected static $blockName = 'getwid/testimonial';

	public function __construct() {

		parent::__construct( self::$blockName );

		register_block_type(
			'getwid/testimonial',
			array(
				'render_callback' => [ $this, 'render_callback' ]
			)
		);

	}

	public function getLabel() {
		return __('Testimonial', 'getwid');
	}

    public function block_frontend_assets() {

        if ( is_admin() ) {
            return;
        }

		if ( FALSE == getwid()->assetsOptimization()->load_assets_on_demand() ) {
			return;
		}

		$rtl = is_rtl() ? '.rtl' : '';

		wp_enqueue_style(
			self::$blockName,
			getwid_get_plugin_url( 'assets/blocks/testimonial/style' . $rtl . '.css' ),
			[],
			getwid()->settings()->getVersion()
		);
    }

	public function render_callback( $attributes, $content ) {

        $this->block_frontend_assets();

        return $content;
    }


}

getwid()->blocksManager()->addBlock(
	new \Getwid\Blocks\Testimonial()
);

```
