mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 05:27:59 +01:00
11 lines
No EOL
220 B
PHP
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 . '}}';
|
|
}
|
|
} |