
Originally Posted by
RetroPiggy
If you go to the 'app' folder and then open class.template.php, you can see all the available options.
You will see at the top of the 'Initiate' function is $this->setParams('hotelName', $_CONFIG['hotel']['name']);
the first paramter is what will be in the {}. In this case, it is 'hotelName'. The second parameter is the value. With hotelName, it pulls the name from the config file.
You can easily create your own aswell. For exmaple, if you wanted to return the current Unix timestamp you could do:
$this->setParams('timestamp', time());
Then typing {timestamp} would return that timestamp