# countdown-time/1.2.2/bplugins_sdk/config.php

Countdown Timer Block – build urgency for events and launches, version 1.2.2. 34 lines.

- Page: https://pluginprobe.com/plugins/countdown-time/1.2.2/code/bplugins_sdk/config.php
- Raw: https://pluginprobe.com/plugins/countdown-time/1.2.2/raw/bplugins_sdk/config.php
- Modified: 2024-01-20T11:25:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/countdown-time/1.2.2/code/bplugins_sdk/config.php#L10-L20`.

```php
<?php

if ( ! defined( 'ABSPATH' ) ) {
    exit;
}

if ( ! defined( 'FS_LITE_SLUG' ) ) {
    define( 'FS_LITE_SLUG', 'bblocksdk' );
}

if ( ! defined( 'FS_LITE_VERSION' ) ) {
    define( 'FS_LITE_VERSION', time() );
}

if ( ! defined( 'FS_LITE_DIR' ) ) {
    define( 'FS_LITE_DIR', plugin_dir_path( __FILE__ ) );
}

if ( ! defined( 'FS_LITE_CONFIG' ) ) {
    define( 'FS_LITE_CONFIG', [
        'prefix' => '',
        'blockHandler' => false,
        'permalinks' => [],
        'features' => [
            'license' => false,
            'optIn' => false
        ],
        "isBlock" => true
    ] );
}



  
```
