Pony.fm/app/library/Helpers.php

11 lines
220 B
PHP
Raw Normal View History

2013-07-25 16:33:04 -05:00
<?php
class Helpers {
public static function template($template) {
echo file_get_contents('templates/' . $template);
}
2013-07-28 12:45:21 -05:00
public static function angular($expression) {
return '{{' . $expression . '}}';
}
2013-07-25 16:33:04 -05:00
}