diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-10-23 22:25:36 -0600 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2009-10-23 22:25:36 -0600 |
commit | 38141865926730506f55b62a499cb548b94d4bfe (patch) | |
tree | 0ba8c493152ba9327c4803783e867cb4a746f5f0 /modules/user/helpers/user_theme.php | |
parent | e3f90a889d5bb4cb1214445bbf5be8c9815d8733 (diff) |
Created user.css. Moved user-related form css to the new sheet.
Diffstat (limited to 'modules/user/helpers/user_theme.php')
-rw-r--r-- | modules/user/helpers/user_theme.php | 28 |
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 |