File "faq.php"
Full Path: /var/www/html/wordpress/wp-content/plugins/gutentools/core/blocks/faq.php
File size: 821 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
if( !class_exists( 'Gutentools_FAQ' ) ){
class Gutentools_FAQ extends Gutentools_Block{
public $slug = 'faq';
/**
* 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::get_instance();
}