File "faq-item.php"
Full Path: /var/www/html/wordpress/wp-content/plugins/gutentools/core/blocks/faq-item.php
File size: 841 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
if( !class_exists( 'Gutentools_FAQ_Item' ) ){
class Gutentools_FAQ_Item extends Gutentools_Block{
public $slug = 'faq-item';
/**
* Title of this block.
*
* @access public
* @since 1.0.0
* @var string
*/
public $title = '';
/**
* Description of this block.
*
* @access public
* @since 1.0.0
* @var string
*/
public $description = '';
/**
* SVG Icon for this block.
*
* @access public
* @since 1.0.0
* @var string
*/
public $icon = '';
public $attrs = '';
protected static $instance;
public static function get_instance() {
if ( null === self::$instance ) {
self::$instance = new self();
}
return self::$instance;
}
}
Gutentools_FAQ_Item::get_instance();
}