Skip to content

Instantly share code, notes, and snippets.

@jbroadway
Created December 6, 2012 16:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jbroadway/4225944 to your computer and use it in GitHub Desktop.
Save jbroadway/4225944 to your computer and use it in GitHub Desktop.
Elefant CMS sub-expression quote test
<!-- apps/test/views/const.html -->
{! navigation/section?section=[constant('HOMEPAGE')] !}
<?php // apps/test/handlers/const.php
define ('HOMEPAGE', 'index');
echo $tpl->render ('test/const');
?>
<!-- apps/test/views/const.html -->
<?php echo $this->controller->run ('navigation/section', array ('section' => Template::sanitize (constant('HOMEPAGE'), 'UTF-8'))); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment