Skip to content

Commit

Permalink
Feature:837 "Extend for templates" could have dedicated .css files.
Browse files Browse the repository at this point in the history
git-svn-id: http://piwigo.org/svn/trunk@2462 68402e56-0260-453c-a942-63ccdbb3a9ee
  • Loading branch information
vdigital committed Jul 30, 2008
1 parent c8c61b7 commit 4dcec5f
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 24 deletions.
9 changes: 9 additions & 0 deletions include/template.class.php
Expand Up @@ -173,6 +173,15 @@ function set_filenames($filename_array)
/* For test purpose: Do advanced users need a php access? */
// $localphp = '../.' . substr($localtpl,0,-3).'php';
// if (file_exists($localphp)) @include_once($localphp);

/* Does it have a samename.css available */
$localcss = substr($localtpl,0,-3).'css';
if (file_exists($localcss))
{
$this->html_head_elements[] =
'<link rel="stylesheet" type="text/css" href="'
. substr($localcss, 2) . '">';
}
}
}
}
Expand Down
7 changes: 7 additions & 0 deletions template-extension/distributed/samples/my-thumbnails2.css
@@ -0,0 +1,7 @@
/* $Id$ */
legend.thumbLegend { padding: 0 5px; color: #24919c; font-style:italic; font-size: 7px; }
fieldset.wrap1 { width: 96px; min-width: 96px; padding: 0;
margin: 5px; display: inline;}
.wrap2 { display: block; padding: 4px 15px 10px 15px; border: 0;}
a.wrap2:hover { border: 0; background-color: #000; }
img.thumbnail { display: block; margin: 2px auto; }
30 changes: 6 additions & 24 deletions template-extension/distributed/samples/my-thumbnails2.tpl
Expand Up @@ -4,32 +4,14 @@
<ul class="thumbnails">
{foreach from=$thumbnails item=thumbnail}
<li>
<span class="wrap1">
<span class="wrap2">
<a href="{$thumbnail.U_IMG_LINK}">
<fieldset class="wrap1">
<legend class="thumbLegend">
{if !empty($thumbnail.ELEMENT_NAME)}{$thumbnail.ELEMENT_NAME}{/if}
</legend>
<a href="{$thumbnail.U_IMG_LINK}" class="wrap2">
<img class="thumbnail" src="{$thumbnail.IMAGE}" alt="{$thumbnail.IMAGE_ALT}" title="{$thumbnail.IMAGE_TITLE}" />
</a>
</span>
<span class="thumbLegend" style="color:#3F6;">
&copy; 2008 Piwigo<br />
{if !empty($thumbnail.ELEMENT_NAME)}{$thumbnail.ELEMENT_NAME}{/if}
{if !empty($thumbnail.IMAGE_TS)}{$thumbnail.IMAGE_TS}{/if}

{if isset($thumbnail.NB_COMMENTS)}
<span class="{if 0==$thumbnail.NB_COMMENTS}zero {/if}nb-comments">
<br />
{$pwg->l10n_dec('%d comment', '%d comments',$thumbnail.NB_COMMENTS)}
</span>
{/if}

{if isset($thumbnail.NB_HITS)}
<span class="{if 0==$thumbnail.NB_HITS}zero {/if}nb-hits">
<br />
{$pwg->l10n_dec('%d hit', '%d hits',$thumbnail.NB_HITS)}
</span>
{/if}
</span>
</span>
</fieldset>
</li>
{/foreach}
</ul>
Expand Down

0 comments on commit 4dcec5f

Please sign in to comment.