# qi-blocks/1.2/constants.php

Qi Blocks, version 1.2. 19 lines.

- Page: https://pluginprobe.com/plugins/qi-blocks/1.2/code/constants.php
- Raw: https://pluginprobe.com/plugins/qi-blocks/1.2/raw/constants.php
- Modified: 2023-06-29T11:30:58+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/qi-blocks/1.2/code/constants.php#L10-L20`.

```php
<?php

define( 'QI_BLOCKS_VERSION', '1.2' );
define( 'QI_BLOCKS_ABS_PATH', dirname( __FILE__ ) );
define( 'QI_BLOCKS_REL_PATH', dirname( plugin_basename( __FILE__ ) ) );
define( 'QI_BLOCKS_URL_PATH', plugin_dir_url( __FILE__ ) );
define( 'QI_BLOCKS_ASSETS_PATH', QI_BLOCKS_ABS_PATH . '/assets' );
define( 'QI_BLOCKS_ASSETS_URL_PATH', QI_BLOCKS_URL_PATH . 'assets' );
define( 'QI_BLOCKS_INC_PATH', QI_BLOCKS_ABS_PATH . '/inc' );
define( 'QI_BLOCKS_INC_URL_PATH', QI_BLOCKS_URL_PATH . 'inc' );
define( 'QI_BLOCKS_BLOCKS_PATH', QI_BLOCKS_INC_PATH . '/blocks' );
define( 'QI_BLOCKS_BLOCKS_URL_PATH', QI_BLOCKS_INC_URL_PATH . '/blocks' );
define( 'QI_BLOCKS_ADMIN_PATH', QI_BLOCKS_INC_PATH . '/admin' );
define( 'QI_BLOCKS_ADMIN_URL_PATH', QI_BLOCKS_INC_URL_PATH . '/admin' );

define( 'QI_BLOCKS_ACTIVATED_TRANSIENT', 'qi_blocks_plugin_activated' );
define( 'QI_BLOCKS_GENERAL_OPTIONS', 'qi_blocks_general_options' );
define( 'QI_BLOCKS_DISABLED_BLOCKS', 'qi_blocks_disabled_blocks' );

```
