[ Index ]

PHP Cross Reference of phpBB-3.1.12-deutsch

title

Body

[close]

/adm/style/ -> acp_ext_list.html (source)

   1  <!-- INCLUDE overall_header.html -->
   2  
   3  <a id="maincontent"></a>
   4  
   5      <h1>{L_EXTENSIONS_ADMIN}</h1>
   6  
   7      <p>{L_EXTENSIONS_EXPLAIN}</p>
   8  
   9      <fieldset class="quick">
  10          <span class="small"><a href="https://www.phpbb.com/go/customise/extensions/3.1" target="_blank">{L_BROWSE_EXTENSIONS_DATABASE}</a> &bull; <a href="{U_VERSIONCHECK_FORCE}">{L_VERSIONCHECK_FORCE_UPDATE_ALL}</a> &bull; <a href="javascript:phpbb.toggleDisplay('version_check_settings');">{L_SETTINGS}</a></span>
  11      </fieldset>
  12  
  13      <form id="version_check_settings" method="post" action="{U_ACTION}" style="display:none">
  14  
  15      <fieldset>
  16          <legend>{L_EXTENSIONS_VERSION_CHECK_SETTINGS}</legend>
  17          <dl>
  18              <dt><label for="force_unstable">{L_FORCE_UNSTABLE}{L_COLON}</label></dt>
  19              <dd>
  20                  <label><input type="radio" id="force_unstable" name="force_unstable" class="radio" value="1"<!-- IF FORCE_UNSTABLE --> checked="checked"<!-- ENDIF --> /> {L_YES}</label>
  21                  <label><input type="radio" name="force_unstable" class="radio" value="0"<!-- IF not FORCE_UNSTABLE --> checked="checked"<!-- ENDIF --> /> {L_NO}</label>
  22              </dd>
  23          </dl>
  24  
  25          <p class="submit-buttons">
  26              <input class="button1" type="submit" name="update" value="{L_SUBMIT}" />&nbsp;
  27              <input class="button2" type="reset" name="reset" value="{L_RESET}" />
  28              <input type="hidden" name="action" value="set_config_version_check_force_unstable" />
  29              {S_FORM_TOKEN}
  30          </p>
  31      </fieldset>
  32      </form>
  33  
  34      <table class="table1">
  35          <col class="row1" ><col class="row1" ><col class="row2" ><col class="row2" >
  36      <thead>
  37          <tr>
  38              <th>{L_EXTENSION_NAME}</th>
  39              <th style="text-align: center; width: 20%;">{L_CURRENT_VERSION}</th>
  40              <th style="text-align: center; width: 10%;">{L_EXTENSION_OPTIONS}</th>
  41              <th style="text-align: center; width: 25%;">{L_EXTENSION_ACTIONS}</th>
  42          </tr>
  43      </thead>
  44      <tbody>
  45          <!-- IF .enabled -->
  46          <tr>
  47              <td class="row3" colspan="4"><strong>{L_EXTENSIONS_ENABLED}</strong><!-- EVENT acp_ext_list_enabled_title_after --></td>
  48          </tr>
  49          <!-- BEGIN enabled -->
  50          <tr class="ext_enabled row-highlight">
  51              <td><strong title="{enabled.NAME}">{enabled.META_DISPLAY_NAME}</strong><!-- EVENT acp_ext_list_enabled_name_after --></td>
  52              <td style="text-align: center;">
  53                  <!-- IF enabled.S_VERSIONCHECK -->
  54                  <strong <!-- IF enabled.S_UP_TO_DATE -->style="color: #228822;"<!-- ELSE -->style="color: #BC2A4D;"<!-- ENDIF -->>{enabled.META_VERSION}</strong>
  55                  <!-- ELSE -->
  56                  {enabled.META_VERSION}
  57                  <!-- ENDIF -->
  58              </td>
  59              <td style="text-align: center;"><a href="{enabled.U_DETAILS}">{L_DETAILS}</a></td>
  60              <td style="text-align: center;">
  61                  <!-- BEGIN actions -->
  62                      <a href="{enabled.actions.U_ACTION}"<!-- IF enabled.actions.L_ACTION_EXPLAIN --> title="{enabled.actions.L_ACTION_EXPLAIN}"<!-- ENDIF -->>{enabled.actions.L_ACTION}</a>
  63                      <!-- IF not enabled.actions.S_LAST_ROW -->&nbsp;|&nbsp;<!-- ENDIF -->
  64                  <!-- END actions -->
  65              </td>
  66          </tr>
  67          <!-- END enabled -->
  68          <!-- ENDIF -->
  69  
  70          <!-- IF .disabled -->
  71          <tr>
  72              <td class="row3" colspan="4"><strong>{L_EXTENSIONS_DISABLED}</strong><!-- EVENT acp_ext_list_disabled_title_after --></td>
  73          </tr>
  74          <!-- BEGIN disabled -->
  75          <tr class="ext_disabled row-highlight">
  76              <td><strong title="{disabled.NAME}">{disabled.META_DISPLAY_NAME}</strong><!-- EVENT acp_ext_list_disabled_name_after --></td>
  77              <td style="text-align: center;">
  78                  <!-- IF disabled.S_VERSIONCHECK -->
  79                  <strong <!-- IF disabled.S_UP_TO_DATE -->style="color: #228822;"<!-- ELSE -->style="color: #BC2A4D;"<!-- ENDIF -->>{disabled.META_VERSION}</strong>
  80                  <!-- ELSE -->
  81                  {disabled.META_VERSION}
  82                  <!-- ENDIF -->
  83              </td>
  84              <td style="text-align: center;">
  85                  <!-- IF disabled.U_DETAILS --><a href="{disabled.U_DETAILS}">{L_DETAILS}</a><!-- ENDIF -->
  86              </td>
  87              <td style="text-align: center;">
  88                  <!-- BEGIN actions -->
  89                      <a href="{disabled.actions.U_ACTION}"<!-- IF disabled.actions.L_ACTION_EXPLAIN --> title="{disabled.actions.L_ACTION_EXPLAIN}"<!-- ENDIF -->>{disabled.actions.L_ACTION}</a>
  90                      <!-- IF not disabled.actions.S_LAST_ROW -->&nbsp;|&nbsp;<!-- ENDIF -->
  91                  <!-- END actions -->
  92              </td>
  93          </tr>
  94          <!-- END disabled -->
  95          <!-- ENDIF -->
  96      </tbody>
  97      </table>
  98  
  99      <table class="table1">
 100      <tr>
 101          <th>{L_EXTENSION_INSTALL_HEADLINE}</th>
 102      </tr>
 103      <tr>
 104          <td class="row3">{L_EXTENSION_INSTALL_EXPLAIN}</td>
 105      </tr>
 106      <tr>
 107          <th>{L_EXTENSION_UPDATE_HEADLINE}</th>
 108      </tr>
 109      <tr>
 110          <td class="row3">{L_EXTENSION_UPDATE_EXPLAIN}</td>
 111      </tr>
 112      <tr>
 113          <th>{L_EXTENSION_REMOVE_HEADLINE}</th>
 114      </tr>
 115      <tr>
 116          <td class="row3">{L_EXTENSION_REMOVE_EXPLAIN}</td>
 117      </tr>
 118      </tbody>
 119      </table>
 120  
 121  <!-- INCLUDE overall_footer.html -->


Generated: Thu Jan 11 00:25:41 2018 Cross-referenced by PHPXref 0.7.1