Location: PHPKode > projects > PHP7 Framework > php7-0.0.0/template/default/defaults.php
<?php
# type: template
# title: default variables for templates
# version: 0.1


// escape all local variables
extract( html( get_defined_vars() ) );


// define a gettext/webtext reference
$_ = "_";  // could be used in heredocs and strings as "  {$_('text')}  "

// text and html snippets
$site_title = "Example website";
$html5_meta = '<meta charset="utf-8" />';


// can also hold custom template/output functions right here
# ...
#include(template("functions"));


?>
Return current item: PHP7 Framework