Pony.fm/app/library/Helpers.php

11 lines
220 B
PHP
Raw Normal View History

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