blob: 4dab8897166c528d5160b3e80bfdccc0ff80a204 (
plain)
1
2
3
4
5
6
7
|
<?php defined("SYSPATH") or die("No direct script access.");
class Uploader_theme_Core {
static function head($theme) {
return $theme->script("waitMe.min.js").
$theme->css("waitMe.min.css");
}
}
|