| 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 |
'lottie-animation', |
| 72 |
'marquee', |
| 73 |
'marquee-child', |
| 74 |
'logout', |
| 75 |
'player', |
| 76 |
'advance-lists', |
| 77 |
'taxonomy-listing', |
| 78 |
'featured-image', |
| 79 |
'interactive-circle-infographic', |
| 80 |
'scroll-to-top', |
| 81 |
'qr-code', |
| 82 |
'advance-list-item', |
| 83 |
'breadcrumb', |
| 84 |
'dynamic-text', |
| 85 |
// loop builder |
| 86 |
'loop-builder', |
| 87 |
'loop-template', |
| 88 |
'loop-load-more', |
| 89 |
'loop-filter', |
| 90 |
// Form Builder |
| 91 |
'form-builder', |
| 92 |
'form-input', |
| 93 |
'form-textarea', |
| 94 |
'form-checkbox', |
| 95 |
'form-multi-step', |
| 96 |
'form-multi-step-child', |
| 97 |
'form-password', |
| 98 |
'form-select', |
| 99 |
'form-radio', |
| 100 |
'frontend-dashboard', |
| 101 |
'text-path', |
| 102 |
// Academy LMS |
| 103 |
'academy-container', |
| 104 |
'academy-certificate', |
| 105 |
'academy-certificate-id', |
| 106 |
'academy-certificate-text', |
| 107 |
'academy-course-search', |
| 108 |
'academy-courses', |
| 109 |
'academy-enroll-form', |
| 110 |
'academy-instructor-registration-form', |
| 111 |
'academy-login-form', |
| 112 |
'academy-password-reset-form', |
| 113 |
'academy-pdf', |
| 114 |
'academy-student-registration-form', |
| 115 |
'academy-course-media', |
| 116 |
// StoreEngine Blocks |
| 117 |
'storeengine-products', |
| 118 |
'storeengine-cart-list', |
| 119 |
'storeengine-login-form', |
| 120 |
'storeengine-coupon-form', |
| 121 |
'storeengine-product-filter', |
| 122 |
'storeengine-checkout-form', |
| 123 |
'storeengine-continue-button', |
| 124 |
'storeengine-checkout-button', |
| 125 |
'storeengine-cart-sub-table', |
| 126 |
'storeengine-cart-button', |
| 127 |
'storeengine-order-info', |
| 128 |
'storeengine-billing-info', |
| 129 |
'storeengine-shipping-info', |
| 130 |
'storeengine-order-details', |
| 131 |
'storeengine-mini-cart', |
| 132 |
'storeengine-cart-notice', |
| 133 |
'storeengine-product-gallery', |
| 134 |
'storeengine-product-summary', |
| 135 |
'storeengine-product-description', |
| 136 |
'storeengine-product-review', |
| 137 |
]; |
| 138 |
|