File "module.php"

Full Path: /home/bytebmoc/tideswithin.com/wp-includes/html-api/plugins/elementor-pro/modules/blockquote/module.php
File size: 321 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace ElementorPro\Modules\Blockquote;

use ElementorPro\Base\Module_Base;

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

class Module extends Module_Base {

	public function get_widgets() {
		return [
			'Blockquote',
		];
	}

	public function get_name() {
		return 'blockquote';
	}
}