PluginProbe ʕ •ᴥ•ʔ
FrontBlocks for Gutenberg/GeneratePress / 1.3.2
FrontBlocks for Gutenberg/GeneratePress v1.3.2
trunk 0.2.0 0.2.1 0.2.2 0.2.3 0.2.4 0.2.5 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.1.0 1.2.0 1.2.1 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 ci-artifacts
frontblocks / includes / Plugin_Main.php
frontblocks / includes Last commit date
Admin 4 months ago Frontend 4 months ago Plugin_Main.php 4 months ago
Plugin_Main.php
167 lines
1 <?php
2 /**
3 * Plugin Main
4 *
5 * @package FrontBlocks
6 * @author Closemarketing
7 * @copyright 2025 Closemarketing
8 * @version 1.0.3
9 */
10
11 namespace FrontBlocks;
12
13 defined( 'ABSPATH' ) || exit;
14
15 /**
16 * Main FrontBlocks class.
17 *
18 * @since 1.0.0
19 */
20 class Plugin_Main {
21 /**
22 * Plugin instance.
23 *
24 * @var FrontBlocks
25 */
26 private static $instance = null;
27
28 /**
29 * Get plugin instance.
30 *
31 * @return FrontBlocks
32 */
33 public static function get_instance() {
34 if ( null === self::$instance ) {
35 self::$instance = new self();
36 }
37
38 return self::$instance;
39 }
40
41 /**
42 * Constructor.
43 */
44 private function __construct() {
45 $this->init();
46 }
47
48 /**
49 * Initialize the plugin.
50 *
51 * @return void
52 */
53 private function init() {
54 // Load modules.
55 $this->load_modules();
56
57 // General enqueue scripts.
58 add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 99 );
59 }
60
61 /**
62 * Load plugin modules.
63 *
64 * @return void
65 */
66 private function load_modules() {
67 // Admin settings page.
68 if ( is_admin() ) {
69 // Load Admin classes if autoloader is not available.
70 if ( ! class_exists( 'FrontBlocks\Admin\UI' ) ) {
71 require_once FRBL_PLUGIN_PATH . 'includes/Admin/UI.php';
72 }
73 if ( ! class_exists( 'FrontBlocks\Admin\Settings' ) ) {
74 require_once FRBL_PLUGIN_PATH . 'includes/Admin/Settings.php';
75 }
76 new Admin\Settings();
77 }
78
79 // Container Edge Alignment for GenerateBlocks.
80 new Frontend\ContainerEdgeAlignment();
81
82 // Carousel module.
83 new Frontend\Carousel();
84
85 // Animations module.
86 new Frontend\Animations();
87
88 // Sticky Column module.
89 new Frontend\StickyColumn();
90
91 // Gallery module.
92 new Frontend\Gallery();
93
94 // Insert Post Block module.
95 new Frontend\InsertPost();
96
97 // Testimonials module (includes settings).
98 new Frontend\Testimonials();
99
100 // Headline module (GenerateBlocks Headline enhancements).
101 new Frontend\Headline();
102
103 // Product Categories module (WooCommerce).
104 new Frontend\ProductCategories();
105
106 // Counter module (GenerateBlocks Headline counter effect).
107 new Frontend\Counter();
108
109 // Reading Time module.
110 new Frontend\ReadingTime();
111
112 // Reading Progress Bar module.
113 new Frontend\ReadingProgress();
114
115 // Back Button module.
116 new Frontend\BackButton();
117
118 // Events module.
119 new Frontend\Events();
120
121 // Shape Animations module (for GenerateBlocks Shape block).
122 new Frontend\ShapeAnimations();
123
124 // Gravity Forms Inline Layout module.
125 new Frontend\GravityFormsInline();
126
127 // Fluid Typography module (GeneratePress Pro integration).
128 new Frontend\FluidTypography();
129
130 // Stacked Images module.
131 new Frontend\StackedImages();
132
133 // Block Patterns module (WordPress block patterns registration).
134 new Frontend\BlockPatterns();
135 }
136
137 /**
138 * Enqueue scripts.
139 *
140 * @return void
141 */
142 public function enqueue_scripts() {
143 wp_enqueue_style(
144 'frontblocks-carousel',
145 FRBL_PLUGIN_URL . 'assets/carousel/frontblocks-carousel.css',
146 array(),
147 FRBL_VERSION
148 );
149
150 wp_enqueue_script(
151 'frontblocks-carousel-custom',
152 FRBL_PLUGIN_URL . 'assets/carousel/frontblocks-carousel.js',
153 array( 'frontblocks-carousel' ),
154 FRBL_VERSION,
155 true
156 );
157
158 wp_enqueue_script(
159 'frontblocks-carousel',
160 FRBL_PLUGIN_URL . 'assets/carousel/glide.min.js',
161 array(),
162 FRBL_VERSION,
163 true
164 );
165 }
166 }
167