Changeset 6397 for extensions/pwgCumulus


Ignore:
Timestamp:
May 27, 2010, 4:04:26 PM (14 years ago)
Author:
nikrou
Message:

Update tags template based on default theme

Location:
extensions/pwgCumulus
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • extensions/pwgCumulus/CHANGELOG

    r6379 r6397  
     1pwgCumulus 0.4.4 - 2010-05-27
     2================================
     3* Add italian language
     4* update tags template based on the one if default theme
     5
    16pwgCumulus 0.4.3 - 2010-05-26
    27================================
  • extensions/pwgCumulus/main.inc.php

    r6379 r6397  
    2222/*
    2323Plugin Name: pwgCumulus
    24 Version: 0.4.3
     24Version: 0.4.4
    2525Description: add an amazing tag cloud
    2626Plugin URI: http://phpwebgallery.net/ext/extension_view.php?eid=263
  • extensions/pwgCumulus/template/tags.tpl

    r5323 r6397  
    1515      <li><a href="{$U_CLOUD}" title="{'cloud'|@translate}" rel="nofollow"><img src="{$themeconf.icon_dir}/tag_cloud.png" class="button" alt="{'cloud'|@translate}"></a></li>
    1616      {/if}
    17 
    18       <li><a href="{$U_HOME}" title="{'home'|@translate}"><img src="{$themeconf.icon_dir}/home.png" class="button" alt="{'home'|@translate}"/></a></li>
    1917    </ul>
    2018    <h2>{'Tags'|@translate}</h2>
     
    2523  <div id="fullTagCloud">
    2624    {foreach from=$tags item=tag}
    27     <span><a href="{$tag.URL}" class="tagLevel{$tag.level}" title="{$tag.counter}">{$tag.name}</a></span>
     25    <span><a href="{$tag.URL}" class="tagLevel{$tag.level}" title="{$pwg->l10n_dec('%d image', '%d images', $tag.counter)}">{$tag.name}</a></span>
    2826    {/foreach}
    2927  </div>
Note: See TracChangeset for help on using the changeset viewer.