| 1 | <TMPL_INCLUDE NAME="header.tmpl"> |
|---|
| 2 | |
|---|
| 3 | <script type="text/javascript" src="<TMPL_VAR NAME=STATIC_URI>plugins/PluginManager/js/app.js"></script> |
|---|
| 4 | <script type="text/javascript"> |
|---|
| 5 | <!-- |
|---|
| 6 | function installPlugin( blog_id ) { |
|---|
| 7 | var name = prompt("<MT_TRANS phrase="Enter the URL of the plugin package:">"); |
|---|
| 8 | if (name) { |
|---|
| 9 | window.location = "?__mode=register&blog_id="+blog_id; |
|---|
| 10 | } |
|---|
| 11 | } |
|---|
| 12 | --> |
|---|
| 13 | </script> |
|---|
| 14 | |
|---|
| 15 | <h2><MT_TRANS phrase="Plugin Manager">: <span class="title-highlight"><MT_TRANS phrase="Installed Plugins"></span></h2> |
|---|
| 16 | |
|---|
| 17 | <div class="tabs"> |
|---|
| 18 | <ul> |
|---|
| 19 | <li class="yah"><a href=""><MT_TRANS phrase="Plugins"></a></li> |
|---|
| 20 | <li class="special"> |
|---|
| 21 | <img src="<TMPL_VAR NAME=STATIC_URI>images/status_icons/create.gif" alt="<MT_TRANS phrase="Add Sidebar">" width="9" height="9" /> |
|---|
| 22 | <a href="#" onclick="installPlugin(<TMPL_VAR NAME=BLOG_ID>); return false;"><MT_TRANS phrase="Install Plugin"></a> |
|---|
| 23 | </li> |
|---|
| 24 | </ul> |
|---|
| 25 | </div> |
|---|
| 26 | |
|---|
| 27 | <div class="list-wrapper"> |
|---|
| 28 | <div class="list" id="queue"> |
|---|
| 29 | |
|---|
| 30 | <div class="list-wrapper"> |
|---|
| 31 | |
|---|
| 32 | <!-- |
|---|
| 33 | <form method="get" action="<TMPL_VAR NAME=SCRIPT_URL>"> |
|---|
| 34 | <input type="hidden" name="__mode" value="delete" /> |
|---|
| 35 | <input type="hidden" name="blog_id" value="<TMPL_VAR NAME=BLOG_ID>" /> |
|---|
| 36 | --> |
|---|
| 37 | |
|---|
| 38 | <div class="list" id="selector"> |
|---|
| 39 | <table cellspacing="0"> |
|---|
| 40 | <thead> |
|---|
| 41 | <tr> |
|---|
| 42 | <th width="1%" class="cb"><input type="checkbox" name="id-head" value="all" class="select" /></th> |
|---|
| 43 | <th><MT_TRANS phrase="Plugin Name"></th> |
|---|
| 44 | <th><MT_TRANS phrase="Last Updated"></th> |
|---|
| 45 | </tr> |
|---|
| 46 | </thead> |
|---|
| 47 | <tbody> |
|---|
| 48 | <TMPL_LOOP NAME=PLUGINS> |
|---|
| 49 | <tr class="<TMPL_IF NAME=ENTRY_ODD>odd<TMPL_ELSE>even</TMPL_IF>"> |
|---|
| 50 | <td class="cb"><input type="checkbox" name="id" value="<TMPL_VAR NAME=SIDEBAR>" class="select" /></td> |
|---|
| 51 | <td class="sidebar-name"><a href="?__mode=edit&blog_id=<TMPL_VAR NAME=BLOG_ID>&sidebar=<TMPL_VAR NAME=SIDEBAR>"><TMPL_VAR NAME=SIDEBAR></a></td> |
|---|
| 52 | <td class="sidebar-widgets"><TMPL_VAR NAME=NAMES></td> |
|---|
| 53 | </tr> |
|---|
| 54 | </TMPL_LOOP> |
|---|
| 55 | </table> |
|---|
| 56 | |
|---|
| 57 | <!-- |
|---|
| 58 | <div class="list-actions"> |
|---|
| 59 | <div class="button-bar"> |
|---|
| 60 | <input type="submit" name="delete" value="<MT_TRANS phrase="Delete Selected">" onclick="do_confirm('<MT_TRANS phrase="Are you sure you wish to delete the selected sidebar(s)?">','');" /> |
|---|
| 61 | </div> |
|---|
| 62 | </div> |
|---|
| 63 | --> |
|---|
| 64 | |
|---|
| 65 | </form> |
|---|
| 66 | |
|---|
| 67 | </div> |
|---|
| 68 | |
|---|
| 69 | </div> |
|---|
| 70 | |
|---|
| 71 | </div> |
|---|
| 72 | </div> |
|---|
| 73 | |
|---|
| 74 | <div id="sidebar-promo"> |
|---|
| 75 | <MT_TRANS phrase="Please support free software,"> <a href="http://www.majordojo.com/projects/PluginManager/downloads/"><MT_TRANS phrase="donate to Plugin Manager"></a>. |
|---|
| 76 | </div> |
|---|
| 77 | |
|---|
| 78 | </div> |
|---|
| 79 | |
|---|
| 80 | <TMPL_INCLUDE NAME="footer.tmpl"> |
|---|