?? GreyFile — Mystic File Browser

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

?? Viewing: story-provider.php

<?php

class Brizy_Editor_Editor_ModuleGroups_StoryProvider 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( __( 'essentials', 'brizy' ), [
				"StoryButton",
				"StoryIcon",
				"StoryEmbed",
				"StoryText",
				"StoryMap",
				"StoryProgressBar",
				"StoryLine",
				"StoryCountdown2",
				"StoryCounter",
				"StoryShape",
				"StoryForm2",
				"StoryStarRating",
				"StoryLottie"
			], 600 ),
			new Brizy_Editor_Editor_ModuleGroups_ModuleGroup( __( 'media', 'brizy' ), [
                "StoryImage",
                "StoryVideo"
            ], 650 ),
		];
	}
}




??

??