Ignore:
Timestamp:
Mar 17, 2010, 1:48:38 AM (14 years ago)
Author:
plg
Message:

feature 1514: new screen to manage installed themes; activate, deactivate,
delete, set as default.

plugins.class.php was merged back to a state it doesn't manage themes at all.
themes.class.php was created instead, from a duplication of plugins.class.php
and strongly modified then.

feature 1507: the display of available themes is now much more "graphic".

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/themes/default/template/themes_new.tpl

    r5145 r5153  
    11<div class="titrePage">
    2   <h2>{'Install New Theme'|@translate}</h2>
     2  <h2>{'Add New Theme'|@translate}</h2>
    33</div>
    44
    55{if isset($themes)}
    6 <div id="themesBox">
     6<div id="themeBoxes">
    77{foreach from=$new_themes item=theme name=themes_loop}
    88  <div class="themeBox">
    99    <div class="themeName">{$theme.name}</div>
    10     <div class="themeShot"><img src="{$theme.src}"></div>
    11     <div class="themeActions"><a href="{$theme.install_url}">Install</a></div>
     10    <div class="themeShot"><img src="{$theme.screenshot}"></div>
     11    <div class="themeActions"><a href="{$theme.install_url}">{'Install'|@translate}</a></div>
    1212  </div>
    1313{/foreach}
    14 </div> <!-- themesBox -->
     14</div> <!-- themeBoxes -->
    1515{/if}
Note: See TracChangeset for help on using the changeset viewer.