PluginProbe
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder / 2.9.1
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder v2.9.1
2.13.0 2.13.1 2.12.0 2.11.1 2.11.0 2.10.0 2.9.0 2.7.4 2.7.5 2.7.6 2.7.7 2.8.0 2.8.1 2.9.1 trunk 1.0 1.0-beta1 1.0-beta2 1.0-beta3 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.1.2 All 80 releases
ablocks / includes / blocks / blocks.php

blocks.php in aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder 2.9.1, at includes/blocks/blocks.php

100 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace ABlocks\Blocks;
3
4 if ( ! defined( 'ABSPATH' ) ) {
5 exit; // Exit if accessed directly.
6 }
7
8 return [
9 'heading',
10 'button',
11 'icon',
12 'spacer',
13 'paragraph',
14 'divider',
15 'star-ratings',
16 'image',
17 'image-scroll',
18 'video',
19 'search',
20 'container',
21 'toggle',
22 'chart',
23 'toggle-child',
24 'accordion',
25 'single-accordion',
26 'tabs',
27 'tabs-child',
28 'lists',
29 'countdown',
30 'counter',
31 'progress-tracker',
32 'price-menu-item',
33 'price-menu',
34 'menu',
35 'menu-item',
36 'menu-child-mega',
37 'menu-child-sub',
38 'table',
39 'table-row',
40 'table-cell',
41 'table-header',
42 'table-footer',
43 'table-body',
44 'coupon',
45 'content-timeline',
46 'content-timeline-child',
47 'map',
48 'table-of-content',
49 'carousel',
50 'carousel-child',
51 'image-comparison',
52 'notice',
53 'modal',
54 'modal-trigger',
55 'modal-panel',
56 'flip-box',
57 'social-shares',
58 'flip-box-child',
59 'dual-button',
60 'price-menu',
61 'price-menu-item',
62 'svg-draw',
63 'image-hotspot',
64 'image-hotspot-child',
65 'info-box',
66 'filterable-cards',
67 'filterable-cards-item',
68 'stripe-button',
69 'news-ticker',
70 'paypal-button',
71 'marquee',
72 'marquee-child',
73 'logout',
74 'advance-lists',
75 'advance-list-item' .
76 // Form Builder
77 'form-builder',
78 'form-input',
79 'form-textarea',
80 'form-checkbox',
81 'form-multi-step',
82 'form-multi-step-child',
83 'form-password',
84 'form-select',
85 'form-radio',
86 'text-path',
87 // Academy LMS
88 'academy-certificate',
89 'academy-certificate-id',
90 'academy-certificate-text',
91 'academy-course-search',
92 'academy-courses',
93 'academy-enroll-form',
94 'academy-instructor-registration-form',
95 'academy-login-form',
96 'academy-password-reset-form',
97 'academy-pdf',
98 'academy-student-registration-form',
99 ];
100