mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-05 08:22:35 +02:00
9aec2fb5e7
- added template smarty function known_script (e.g.{known_script id="x" src"y.js"}) - useful to avoid double inclusion of a script such as prototype,jquery,... when a template and plugin need it independently (see the use in admin.tpl for example)
- removed unused themeconf.template_dir
git-svn-id: http://piwigo.org/svn/trunk@2513 68402e56-0260-453c-a942-63ccdbb3a9ee
16 lines
423 B
PHP
16 lines
423 B
PHP
<?php
|
|
$themeconf = array(
|
|
'template' => 'yoga',
|
|
'theme' => 'wipi',
|
|
'icon_dir' => 'template/yoga/icon',
|
|
'admin_icon_dir' => 'template/yoga/icon/admin',
|
|
'mime_icon_dir' => 'template/yoga/icon/mimetypes/',
|
|
'local_head' => '',
|
|
);
|
|
if ( !isset($lang['Theme: wipi']) )
|
|
{
|
|
$lang['Theme: wipi'] = 'The site is displayed with wipi theme based ' .
|
|
' on yoga template, a standard template/theme of PhpWebgallery.';
|
|
}
|
|
?>
|