PluginProbe
GutSlider – All in One Slider and Carousel Blocks for Gutenberg / 2.9.7
GutSlider – All in One Slider and Carousel Blocks for Gutenberg v2.9.7
3.1.0 3.0.0 2.13.2 2.13.1 2.13.0 trunk 1.0.0 2.1.0 2.10.0 2.10.1 2.11.0 2.11.1 2.11.2 2.11.3 2.11.4 2.12.0 2.2.1 2.2.2 2.3.0 2.4.0 2.5.1 2.5.3 2.5.4 2.5.5 2.6.1 All 56 releases
slider-blocks / includes / api / blocks.php

blocks.php in GutSlider – All in One Slider and Carousel Blocks for Gutenberg 2.9.7, at includes/api/blocks.php

176 lines 6.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 // exit if accessed directly
4 if (!defined('ABSPATH')) exit;
5
6 return apply_filters( 'gutslider_blocks', [
7 [
8 'name' => 'content-slider',
9 'title' => __('Static', 'slider-blocks'),
10 'description' => __('Create slider with static content like Image, text, button.', 'slider-blocks'),
11 'is_pro' => false,
12 'demo_slug' => 'static',
13 'active' => true,
14 ],
15 [
16 'name' => 'any-content',
17 'title' => __('Flexible', 'slider-blocks'),
18 'description' => __('Create slider with any type of content.', 'slider-blocks'),
19 'is_pro' => false,
20 'demo_slug' => 'flexible',
21 'active' => true,
22 ],
23 [
24 'name' => 'testimonial-slider',
25 'title' => __('Testimonial', 'slider-blocks'),
26 'description' => __('Create amazing testimonial slider.', 'slider-blocks'),
27 'is_pro' => false,
28 'demo_slug' => 'testimonial',
29 'active' => true,
30 ],
31 [
32 'name' => 'photo-carousel',
33 'title' => __('Photo Carousel', 'slider-blocks'),
34 'description' => __('Create amazing photos carousel with lightbox.', 'slider-blocks'),
35 'is_pro' => false,
36 'demo_slug' => 'photo',
37 'active' => true,
38 ],
39 [
40 'name' => 'logo-carousel',
41 'title' => __('Brand Logos', 'slider-blocks'),
42 'description' => __('Create clients logos carousel with amazing styles.', 'slider-blocks'),
43 'is_pro' => false,
44 'demo_slug' => 'brand-logos',
45 'active' => true,
46 ],
47 [
48 'name' => 'before-after',
49 'title' => __('Before After', 'slider-blocks'),
50 'description' => __('Create photos comparision before after slider.', 'slider-blocks'),
51 'is_pro' => false,
52 'demo_slug' => 'before-after',
53 'active' => true,
54 ],
55 [
56 'name' => 'videos-carousel',
57 'title' => __('Videos', 'slider-blocks'),
58 'description' => __('Create videos carousel from video sharing platform e.g YouTube', 'slider-blocks'),
59 'is_pro' => false,
60 'demo_slug' => 'videos',
61 'active' => true,
62 ],
63 [
64 'name' => 'post-slider',
65 'title' => __('Blog Post', 'slider-blocks'),
66 'description' => __('Create dynamic content slider or carousel using blog posts.', 'slider-blocks'),
67 'is_pro' => false,
68 'demo_slug' => 'post-slider',
69 'active' => true,
70 ],
71 [
72 'name' => 'shader-slider',
73 'title' => __('Shader Slider', 'slider-blocks'),
74 'description' => __('Interactive shader slider for static and dynamic content.', 'slider-blocks'),
75 'is_pro' => true,
76 'demo_slug' => 'shader-slider',
77 'active' => true,
78 ],
79 [
80 'name' => 'shutters-slider',
81 'title' => __('Shutters Slider', 'slider-blocks'),
82 'description' => __('Interactive shutters slider for static and dynamic content.', 'slider-blocks'),
83 'is_pro' => true,
84 'demo_slug' => 'shutters-slider',
85 'active' => true,
86 ],
87 [
88 'name' => 'slicer-slider',
89 'title' => __('Slicer Slider', 'slider-blocks'),
90 'description' => __('Interactive slicer slider for static and dynamic content.', 'slider-blocks'),
91 'is_pro' => true,
92 'demo_slug' => 'slicer-slider',
93 'active' => true,
94 ],
95 [
96 'name' => 'fashion-slider',
97 'title' => __('Fashion Slider', 'slider-blocks'),
98 'description' => __('Interactive fashion slider for static and dynamic content.', 'slider-blocks'),
99 'is_pro' => true,
100 'demo_slug' => 'fashion-slider',
101 'active' => true,
102 ],
103 [
104 'name' => 'triple-slider',
105 'title' => __('Triple Slider', 'slider-blocks'),
106 'description' => __('Interactive triple slider for static and dynamic content.', 'slider-blocks'),
107 'is_pro' => true,
108 'demo_slug' => 'triple-slider',
109 'active' => true,
110 ],
111 [
112 'name' => 'spring-carousel',
113 'title' => __('Spring Carousel', 'slider-blocks'),
114 'description' => __('Interactive spring carousel for static and dynamic content.', 'slider-blocks'),
115 'is_pro' => true,
116 'demo_slug' => 'spring-carousel',
117 'active' => true,
118 ],
119 [
120 'name' => 'panorama-carousel',
121 'title' => __('Panorama Carousel', 'slider-blocks'),
122 'description' => __('Interactive panorama carousel for static and dynamic content.', 'slider-blocks'),
123 'is_pro' => true,
124 'demo_slug' => 'panorama-carousel',
125 'active' => true,
126 ],
127 [
128 'name' => 'three-d-carousel',
129 'title' => __('3D Carousel', 'slider-blocks'),
130 'description' => __('Interactive 3D carousel for static and dynamic content.', 'slider-blocks'),
131 'is_pro' => true,
132 'demo_slug' => '3d-carousel',
133 'active' => true,
134 ],
135 [
136 'name' => 'card-slider',
137 'title' => __('Card Slider', 'slider-blocks'),
138 'description' => __('Interactive card slider for static and dynamic content.', 'slider-blocks'),
139 'is_pro' => true,
140 'demo_slug' => 'card-slider',
141 'active' => true,
142 ],
143 [
144 'name' => 'marquee-carousel',
145 'title' => __('Marquee Carousel', 'slider-blocks'),
146 'description' => __('Interactive marquee carousel for static and dynamic content.', 'slider-blocks'),
147 'is_pro' => true,
148 'demo_slug' => 'marquee-carousel',
149 'active' => true,
150 ],
151 [
152 'name' => 'material-carousel',
153 'title' => __('Material Carousel', 'slider-blocks'),
154 'description' => __('Interactive material carousel for static and dynamic content.', 'slider-blocks'),
155 'is_pro' => true,
156 'demo_slug' => 'material',
157 'active' => true,
158 ],
159 [
160 'name' => 'tinder-slider',
161 'title' => __('Tinder Slider', 'slider-blocks'),
162 'description' => __('Interactive tinder slider for static and dynamic content.', 'slider-blocks'),
163 'is_pro' => true,
164 'demo_slug' => 'tinder-slider',
165 'active' => true,
166 ],
167 [
168 'name' => 'hover-slider',
169 'title' => __('Hover Slider', 'slider-blocks'),
170 'description' => __('Interactive hover slider for static and dynamic content.', 'slider-blocks'),
171 'is_pro' => true,
172 'demo_slug' => 'hover-slider',
173 'active' => true,
174 ],
175
176 ] );