source: branches/2.0/plugins/admin_advices/admin_advices.tpl @ 20321

Last change on this file since 20321 was 3493, checked in by vdigital, 15 years ago

New: jQuery status

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 3.3 KB
RevLine 
[1900]1<div class="content">
[2472]2
[2390]3  <h3>{'An_advice_about'|@translate} {$ADVICE_ABOUT}</h3>
[2472]4  <h4>{$ADVICE_TEXT}</h4>
5  <table summary="Admin advices summary">
6  {if isset($More)}
7  <tr>
8    <td style="text-align: left; width: 50%;">
[2266]9    {foreach from=$More item=advice}
10      {$advice}<BR />
11    {/foreach}
[1900]12    <br />
[2472]13    </td>
14    <td style="text-align: right; width: 20%;">
[2266]15    {if isset($thumbnail.IMAGE)}
[2472]16      <a href="{$thumbnail.U_MODIFY}" title="{'link_info_image'|@translate}">
17      <img class="thumbnail" src="{$thumbnail.IMAGE}"
18           alt="{$thumbnail.IMAGE_ALT}" title="{$thumbnail.IMAGE_TITLE}"></a>
19      </td><td style="text-align: left;">
[2541]20      <img src="{$themeconf.admin_icon_dir}/{$thumbnail.NAME}check.png"
[2472]21           alt="{$thumbnail.IMAGE_ALT}" title="{$thumbnail.IMAGE_TITLE}"> {'Name'|@translate}<br />
[2541]22      <img src="{$themeconf.admin_icon_dir}/{$thumbnail.COMMENT}check.png"
[2472]23           alt="{$thumbnail.IMAGE_ALT}" title="{$thumbnail.IMAGE_TITLE}"> {'Description'|@translate}<br />
[2541]24      <img src="{$themeconf.admin_icon_dir}/{$thumbnail.AUTHOR}check.png"
[2472]25           alt="{$thumbnail.IMAGE_ALT}" title="{$thumbnail.IMAGE_TITLE}"> {'Author'|@translate}<br />
[2541]26      <img src="{$themeconf.admin_icon_dir}/{$thumbnail.CREATE_DATE}check.png"
[2472]27           alt="{$thumbnail.IMAGE_ALT}" title="{$thumbnail.IMAGE_TITLE}"> {'Creation date'|@translate}<br />
[2541]28      <img src="{$themeconf.admin_icon_dir}/{$thumbnail.METADATA}check.png"
[2472]29           alt="{$thumbnail.IMAGE_ALT}" title="{$thumbnail.IMAGE_TITLE}"> {'Metadata'|@translate}<br />
[2541]30      <img src="{$themeconf.admin_icon_dir}/{$thumbnail.TAGS}check.png"
[2472]31           alt="{$thumbnail.IMAGE_ALT}" title="{$thumbnail.IMAGE_TITLE}"> {'Tags'|@translate} ({$thumbnail.NUM_TAGS})
[2266]32    {/if}
[2472]33    </td>
[2266]34  </tr>
[2472]35  {/if}
[1900]36  </table>
[2472]37  <div class="summary">
38    <h4>External summary</h4>
39    <ul>Database Analysis<br />
40      {if ($pwgsize != $size)}
41      - Space used by {$prefixTable} tables: {$pwgsize}<br />
42      {/if}
43      - Space used by all tables: {$size}<br />
44      - {$checked_tables}<br />
45      - Unused allocated space by {$prefixTable} tables: {$pwgspacef}<br />
46      {if ($spacef > 0 and $pwgspacef != $spacef)}
47        - Unused allocated space: {$spacef}<br />
48      {/if}
49      {if ($spacef > 0)}
50      Useful links:
51        <a class="internal" href="{$U_maintenance}">{'repair and optimize database'|@translate}</a> -
52        {else}
53      MySQL documentation:
54      {/if}
55        <a class="external" href="http://dev.mysql.com/doc/" onclick="window.open(this.href, ''); return false;">MySQL</a>
56      <br /><br />
57    Templates generated on {$smarty.now|date_format:"%A, %B %e, %Y - %r"} by
58    <a class="external" href="http://www.smarty.net/" onclick="window.open(this.href, ''); return false;">Smarty</a>
[3493]59    {$smarty.version}<br />
60    Animations FX by <span class="jQuery"><a class="external" href="http://jquery.com/" onclick="window.open(this.href, ''); return false;">jQuery</a>&nbsp;</span>
[2472]61    </ul>
62  </div>
63</div>
[2510]64<script type="text/javascript">// <![CDATA[
65{literal}$(document).ready(function() {
66        $("img.thumbnail").fadeTo("slow", 0.6); // Opacity on page load
[3493]67        $(".jQuery").append($().jquery);
[2510]68        $("img.thumbnail").hover(function(){
69                $(this).fadeTo("slow", 1.0); // Opacity on hover
70        },function(){
71                $(this).fadeTo("slow", 0.6); // Opacity on mouseout
72        });
73});{/literal}
74// ]]>
75</script>
Note: See TracBrowser for help on using the repository browser.