# scrollsequence/1.5.5/includes/carbonfields/htmlburger/carbon-fields/config.php

Scrollsequence – Cinematic Scroll Image Animation Plugin, version 1.5.5. 29 lines.

- Page: https://pluginprobe.com/plugins/scrollsequence/1.5.5/code/includes/carbonfields/htmlburger/carbon-fields/config.php
- Raw: https://pluginprobe.com/plugins/scrollsequence/1.5.5/raw/includes/carbonfields/htmlburger/carbon-fields/config.php
- Modified: 2024-03-08T07:59: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/scrollsequence/1.5.5/code/includes/carbonfields/htmlburger/carbon-fields/config.php#L10-L20`.

```php
<?php

namespace Carbon_Fields;

# Define version constant
if ( ! defined( __NAMESPACE__ . '\VERSION' ) ) {
	define( __NAMESPACE__ . '\VERSION', '3.6.3' );
}

# Define root directory
if ( ! defined( __NAMESPACE__ . '\DIR' ) ) {
	define( __NAMESPACE__ . '\DIR', __DIR__ );
}

# Define root URL
if ( ! defined( __NAMESPACE__ . '\URL' ) ) {
	define( __NAMESPACE__ . '\URL', Carbon_Fields::directory_to_url( \Carbon_Fields\DIR ) );
}

# Define whether to compact input fields into a single one to avoid hitting max_input_vars
if ( ! defined( __NAMESPACE__ . '\COMPACT_INPUT' ) ) {
	define( __NAMESPACE__ . '\COMPACT_INPUT', true );
}

# Define whether to compact input fields into a single one to avoid hitting max_input_vars
if ( ! defined( __NAMESPACE__ . '\COMPACT_INPUT_KEY' ) ) {
	define( __NAMESPACE__ . '\COMPACT_INPUT_KEY', 'carbon_fields_compact_input' );
}

```
