Home
last modified time | relevance | path

Searched refs:OPTION_ENABLE_DATA_VARIABLES (Results 1 – 2 of 2) sorted by relevance

/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DContext.php70 if (isset($options[Handlebars::OPTION_ENABLE_DATA_VARIABLES])) {
71 if (!is_bool($options[Handlebars::OPTION_ENABLE_DATA_VARIABLES])) {
73 … 'Context Constructor "' . Handlebars::OPTION_ENABLE_DATA_VARIABLES . '" option must be a boolean'
76 $this->enableDataVariables = $options[Handlebars::OPTION_ENABLE_DATA_VARIABLES];
H A DHandlebars.php28 const OPTION_ENABLE_DATA_VARIABLES = 'enableDataVariables'; define in Handlebars\\Handlebars
151 if (isset($options[self::OPTION_ENABLE_DATA_VARIABLES])) {
152 if (!is_bool($options[self::OPTION_ENABLE_DATA_VARIABLES])) {
154 … 'Handlebars Constructor "' . self::OPTION_ENABLE_DATA_VARIABLES . '" option must be a boolean'
157 $this->enableDataVariables = $options[self::OPTION_ENABLE_DATA_VARIABLES];