source: extensions/Juza/themeconf.inc.php @ 4474

Last change on this file since 4474 was 4474, checked in by vdigital, 14 years ago

[Update] For Juza - Minor changes for plg

Pendings:

  • Configuration
  • Exception management
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 760 bytes
Line 
1<?php
2$themeconf = array(
3  'template' => 'yoga',
4  'theme' => 'Juza',
5  'icon_dir' => 'template/yoga/theme/Juza/icon',
6  'admin_icon_dir' => 'template/yoga/icon/admin',
7  'mime_icon_dir' => 'template/yoga/theme/Juza/icon/mimetypes/',
8  'local_head' => '
9<!--[if IE]>
10  <link rel="stylesheet" href="template/yoga/theme/Juza/theme-ie.css" type="text/css">
11<![endif]-->
12  ',
13  'juza-handler' => create_function('$arg', 'global $template, $themeconf;
14    $template->set_filenames(array("juza"=>"theme/Juza/script.tpl"));
15    $template->parse("juza");
16    return $arg;'),
17);
18global $user;
19$user["expand"] = true; /* Forced to assign subcategory links inside each category on index page */
20add_event_handler('loc_after_page_header', $themeconf['juza-handler']);
21?>
Note: See TracBrowser for help on using the repository browser.