PluginProbe
Countdown Timer Block – build urgency for events and launches / 1.2.8
Countdown Timer Block – build urgency for events and launches v1.2.8
1.3.3 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 All 32 releases
countdown-time / bplugins_sdk / config.php

config.php in Countdown Timer Block – build urgency for events and launches 1.2.8, at bplugins_sdk/config.php

34 lines 610 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if ( ! defined( 'ABSPATH' ) ) {
4 exit;
5 }
6
7 if ( ! defined( 'FS_LITE_SLUG' ) ) {
8 define( 'FS_LITE_SLUG', 'bblocksdk' );
9 }
10
11 if ( ! defined( 'FS_LITE_VERSION' ) ) {
12 define( 'FS_LITE_VERSION', time() );
13 }
14
15 if ( ! defined( 'FS_LITE_DIR' ) ) {
16 define( 'FS_LITE_DIR', plugin_dir_path( __FILE__ ) );
17 }
18
19 if ( ! defined( 'FS_LITE_CONFIG' ) ) {
20 define( 'FS_LITE_CONFIG', [
21 'prefix' => '',
22 'blockHandler' => false,
23 'permalinks' => [],
24 'features' => [
25 'license' => false,
26 'optIn' => false
27 ],
28 "isBlock" => true
29 ] );
30 }
31
32
33
34