======Core Import Tag======
=====CORE:IMPORT=====
Import variable definitions into the current template scope
====Syntax====
====Description====
The [[CoreImportTag]] is a [[SilentCompilerDirectiveTag]] and has no corresponding component.
====Example====
The PHP file:
display();
?>
The template file 'theTemplate.html':
{greeting} - {key1}, {key2}
The "variable-definitions.ini" file:
// one key-value pair per line
// keys don't start with a sign
key1 = value1
key2 = value2
greeting = hello world
the output:
hello world - value1, value2
note : filename is relative to the template in which the core:import tag is utilized