Pony.fm/app/library/Helpers.php

7 lines
130 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);
}
}