[ Index ]

PHP Cross Reference of phpBB-3.3.14-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.3" 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          {% for list in ['enabled', 'disabled', 'not_installed'] %}
  46              {% set blockname = attribute(loops, list) %}
  47              {% if blockname|length %}
  48              <tr>
  49                  <td class="row3" colspan="4"><strong>{{ lang('EXTENSIONS_' ~ list|upper) }}</strong>
  50                      {% if list == 'enabled' %}
  51                          {% EVENT acp_ext_list_enabled_title_after %}
  52                      {% elseif list == 'disabled' %}
  53                          {% EVENT acp_ext_list_disabled_title_after %}
  54                      {% elseif list == 'not_installed' %}
  55                          {% EVENT acp_ext_list_not_installed_title_after %}
  56                      {% endif %}
  57                  </td>
  58              </tr>
  59              {% for data in blockname %}
  60              <tr class="ext_{{ list }} row-highlight">
  61                  <td><strong title="{{ data.NAME }}">{{ data.META_DISPLAY_NAME }}</strong>
  62                      {% if list == 'enabled' %}
  63                          {% EVENT acp_ext_list_enabled_name_after %}
  64                      {% elseif list == 'disabled' %}
  65                          {% EVENT acp_ext_list_disabled_name_after %}
  66                      {% elseif list == 'not_installed' %}
  67                          {% EVENT acp_ext_list_not_installed_name_after %}
  68                      {% endif %}
  69                  </td>
  70                  <td style="text-align: center;">
  71                      {% if data.S_VERSIONCHECK %}
  72                      <strong class="{% if data.S_UP_TO_DATE %}current-ext{% else %}outdated-ext{% endif %}">{{ data.META_VERSION }}</strong>
  73                      {% if not data.S_UP_TO_DATE %}<i class="fa fa-exclamation-circle outdated-ext" aria-hidden="true"></i>{% endif %}
  74                      {% else %}
  75                      {{ data.META_VERSION }}
  76                      {% endif %}
  77                  </td>
  78                  <td style="text-align: center;">
  79                      {% if data.U_DETAILS %}<a href="{{ data.U_DETAILS }}">{{ lang ('DETAILS') }}</a>{% endif %}
  80                  </td>
  81                  <td style="text-align: center;">
  82                      {% for actions in data.actions %}
  83                          <a href="{{ actions.U_ACTION }}"{% if actions.L_ACTION_EXPLAIN %} title="{{ actions.L_ACTION_EXPLAIN }}"{% endif %}>{{ actions.L_ACTION }}</a>
  84                          {% if not actions.S_LAST_ROW %}&nbsp;|&nbsp;{% endif %}
  85                      {% endfor %}
  86                  </td>
  87              </tr>
  88              {% endfor %}
  89              {% endif %}
  90          {% endfor %}
  91      </tbody>
  92      </table>
  93  
  94      <table class="table1">
  95      <tr>
  96          <th>{L_EXTENSION_INSTALL_HEADLINE}</th>
  97      </tr>
  98      <tr>
  99          <td class="row3">{L_EXTENSION_INSTALL_EXPLAIN}</td>
 100      </tr>
 101      <tr>
 102          <th>{L_EXTENSION_UPDATE_HEADLINE}</th>
 103      </tr>
 104      <tr>
 105          <td class="row3">{L_EXTENSION_UPDATE_EXPLAIN}</td>
 106      </tr>
 107      <tr>
 108          <th>{L_EXTENSION_REMOVE_HEADLINE}</th>
 109      </tr>
 110      <tr>
 111          <td class="row3">{L_EXTENSION_REMOVE_EXPLAIN}</td>
 112      </tr>
 113      </tbody>
 114      </table>
 115  
 116  <!-- INCLUDE overall_footer.html -->


Generated: Mon Nov 25 19:05:08 2024 Cross-referenced by PHPXref 0.7.1