summaryrefslogtreecommitdiff
path: root/modules/user/helpers/user_theme.php
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-10-24 07:28:22 -0700
committerTim Almdal <tnalmdal@shaw.ca>2009-10-24 07:28:22 -0700
commit0a6b540092f2fda55a864a6beec6df9f5dd1b902 (patch)
tree8c28b3f26ed37f9f76e8d555c8273670ce87a2b9 /modules/user/helpers/user_theme.php
parent18b402a1e55d9450eee79f2079fc91a8d856e26b (diff)
parente13f92abab2cef2d58cc4e560e18aa65c138a264 (diff)
Merge branch 'master' into talmdal_dev
Conflicts: modules/server_add/helpers/server_add_theme.php
Diffstat (limited to 'modules/user/helpers/user_theme.php')
-rw-r--r--modules/user/helpers/user_theme.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/modules/user/helpers/user_theme.php b/modules/user/helpers/user_theme.php
new file mode 100644
index 00000000..191fd15a
--- /dev/null
+++ b/modules/user/helpers/user_theme.php
@@ -0,0 +1,28 @@
+<?php defined("SYSPATH") or die("No direct script access.");
+/**
+ * Gallery - a web based photo album viewer and editor
+ * Copyright (C) 2000-2009 Bharat Mediratta
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or (at
+ * your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+class user_theme_Core {
+ static function head($theme) {
+ $theme->css("user.css");
+ }
+
+ static function admin_head($theme) {
+ $theme->css("user.css");
+ }
+} \ No newline at end of file