Pony.fm/app/library/Helpers.php
2013-07-28 12:45:21 -05:00

11 lines
No EOL
220 B
PHP

<?php
class Helpers {
public static function template($template) {
echo file_get_contents('templates/' . $template);
}
public static function angular($expression) {
return '{{' . $expression . '}}';
}
}