Revision 1556,
391 bytes
checked in by philippe, 13 years ago
(diff) |
created plugin myPrettyAdminByDA
|
Line | |
---|
1 | <?php |
---|
2 | $core->addBehavior('adminPageHTMLHead',array('customAdmin','adminCssLink')); |
---|
3 | $core->tpl->use_cache = false; |
---|
4 | |
---|
5 | class customAdmin |
---|
6 | { |
---|
7 | public static function adminCssLink() |
---|
8 | { |
---|
9 | global $core; |
---|
10 | $url = $core->blog->getQmarkURL().'pf='.basename(dirname(__FILE__)); |
---|
11 | echo |
---|
12 | '<style type="text/css">'."\n". |
---|
13 | '@import url('.$url.'/css/admin.css);'."\n". |
---|
14 | "</style>\n"; |
---|
15 | } |
---|
16 | } |
---|
17 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.