| Current Path : /home/ereika83/www/wp-content/plugins/bb-theme-builder/modules/fl-comments/ |
| Current File : /home/ereika83/www/wp-content/plugins/bb-theme-builder/modules/fl-comments/fl-comments.php |
<?php
/**
* @since 1.0
* @class FLCommentsModule
*/
class FLCommentsModule extends FLBuilderModule {
/**
* @method __construct
*/
public function __construct() {
parent::__construct(array(
'name' => __( 'Comments', 'bb-theme-builder' ),
'description' => __( 'Displays the comments for the current post.', 'bb-theme-builder' ),
'group' => __( 'Themer Modules', 'bb-theme-builder' ),
'category' => __( 'Posts', 'bb-theme-builder' ),
'partial_refresh' => true,
'dir' => FL_THEME_BUILDER_DIR . 'modules/fl-comments/',
'url' => FL_THEME_BUILDER_URL . 'modules/fl-comments/',
'enabled' => FLThemeBuilderLayoutData::current_post_is( 'singular' ),
));
}
}
FLBuilder::register_module( 'FLCommentsModule', array() );