PluginProbe
Qi Blocks / 1.2.2
Qi Blocks v1.2.2
1.5.3 1.5.2 1.5.1 trunk 1.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 1.1.1 1.1.2 1.2 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 All 45 releases
qi-blocks / constants.php

constants.php in Qi Blocks 1.2.2, at constants.php

19 lines 984 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 define( 'QI_BLOCKS_VERSION', '1.2.2' );
4 define( 'QI_BLOCKS_ABS_PATH', dirname( __FILE__ ) );
5 define( 'QI_BLOCKS_REL_PATH', dirname( plugin_basename( __FILE__ ) ) );
6 define( 'QI_BLOCKS_URL_PATH', plugin_dir_url( __FILE__ ) );
7 define( 'QI_BLOCKS_ASSETS_PATH', QI_BLOCKS_ABS_PATH . '/assets' );
8 define( 'QI_BLOCKS_ASSETS_URL_PATH', QI_BLOCKS_URL_PATH . 'assets' );
9 define( 'QI_BLOCKS_INC_PATH', QI_BLOCKS_ABS_PATH . '/inc' );
10 define( 'QI_BLOCKS_INC_URL_PATH', QI_BLOCKS_URL_PATH . 'inc' );
11 define( 'QI_BLOCKS_BLOCKS_PATH', QI_BLOCKS_INC_PATH . '/blocks' );
12 define( 'QI_BLOCKS_BLOCKS_URL_PATH', QI_BLOCKS_INC_URL_PATH . '/blocks' );
13 define( 'QI_BLOCKS_ADMIN_PATH', QI_BLOCKS_INC_PATH . '/admin' );
14 define( 'QI_BLOCKS_ADMIN_URL_PATH', QI_BLOCKS_INC_URL_PATH . '/admin' );
15
16 define( 'QI_BLOCKS_ACTIVATED_TRANSIENT', 'qi_blocks_plugin_activated' );
17 define( 'QI_BLOCKS_GENERAL_OPTIONS', 'qi_blocks_general_options' );
18 define( 'QI_BLOCKS_DISABLED_BLOCKS', 'qi_blocks_disabled_blocks' );
19