Current path: home/webdevt/www/wdp/wp-content/plugins/brizy/editor/editor/module-groups/
?? Go up: /home/webdevt/www/wdp/wp-content/plugins/brizy/editor/editor
<?php
class Brizy_Editor_Editor_ModuleGroups_WordpressProvider implements Brizy_Editor_Editor_ModuleGroups_ProviderInterface {
use Brizy_Editor_Editor_ModuleGroups_ContextUtils;
public function supportContext( $context ) {
return !$this->isStory( $context );
}
public function collect( $context ) {
return [
new Brizy_Editor_Editor_ModuleGroups_ModuleGroup( __( 'wordpress', 'brizy' ), [
$this->hasSidebar( $context ) ? "WPSidebar" : null,
"WPCustomShortcode"
], $this->isTemplateType($context, 'single' ) ? 150 : 500 ),
];
}
}