[ Index ]

PHP Cross Reference of phpBB-3.3.14-deutsch

title

Body

[close]

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

   1  <!-- INCLUDE overall_header.html -->
   2  
   3  <a id="maincontent"></a>
   4  
   5  <!-- IF S_STYLE_DETAILS -->
   6      <a href="{U_ACTION}" style="float: {S_CONTENT_FLOW_END};">&laquo; {L_BACK}</a>
   7  <!-- ENDIF -->
   8  
   9  <!-- IF S_CONFIRM_ACTION -->
  10  <form id="confirm" method="post" action="{S_CONFIRM_ACTION}">
  11  
  12  <fieldset>
  13      <h1>{MESSAGE_TITLE}</h1>
  14      <p>{MESSAGE_TEXT}</p>
  15      <!-- IF S_CONFIRM_DELETE -->
  16      <label><input type="checkbox" class="checkbox" name="confirm_delete_files" /> {L_DELETE_FROM_FS}</label>
  17      <!-- ENDIF -->
  18  
  19      {S_HIDDEN_FIELDS}
  20  
  21      <div style="text-align: center;">
  22          <input type="submit" name="confirm" value="{L_YES}" class="button2" />&nbsp;
  23          <input type="submit" name="cancel" value="{L_NO}" class="button2" />
  24      </div>
  25  
  26  </fieldset>
  27  
  28  </form>
  29  <!-- ELSE -->
  30  
  31  <!-- IF L_TITLE --><h1>{L_TITLE}</h1><!-- ENDIF -->
  32  
  33  <!-- IF L_EXPLAIN --><p>{L_EXPLAIN}</p><!-- ENDIF -->
  34  
  35  <fieldset class="quick">
  36      <span class="small"><a href="https://www.phpbb.com/go/customise/styles/3.3" target="_blank">{L_BROWSE_STYLES_DATABASE}</a></span>
  37  </fieldset>
  38  
  39  <form id="acp_styles" method="post" action="{U_ACTION}">
  40  {S_HIDDEN_FIELDS}
  41  {S_FORM_TOKEN}
  42  
  43  <!-- IF S_STYLE_DETAILS -->
  44      <input type="hidden" name="id" value="{STYLE_ID}" />
  45      <fieldset>
  46      <dl>
  47          <dt><label for="name">{L_STYLE_NAME}{L_COLON}</label></dt>
  48          <dd><input type="text" id="name" name="style_name" value="{STYLE_NAME}" /></dd>
  49      </dl>
  50      <dl>
  51          <dt><label>{L_STYLE_PATH}{L_COLON}</label></dt>
  52          <dd><strong>{STYLE_PATH}</strong></dd>
  53      </dl>
  54      <dl>
  55          <dt><label>{L_STYLE_VERSION}{L_COLON}</label></dt>
  56          <dd><strong>{STYLE_VERSION}</strong></dd>
  57      </dl>
  58      <dl>
  59          <dt><label for="name">{L_COPYRIGHT}{L_COLON}</label></dt>
  60          <dd><strong>{STYLE_COPYRIGHT}</strong></dd>
  61      </dl>
  62      <dl>
  63          <dt><label for="style_parent">{L_INHERITING_FROM}{L_COLON}</label></dt>
  64          <dd><select id="style_parent" name="style_parent">
  65              <option value=""<!-- IF STYLE_PARENT == 0 --> selected="selected"<!-- ENDIF -->> - </option>
  66              <!-- BEGIN parent_styles -->
  67                  <option value="{parent_styles.STYLE_ID}"<!-- IF parent_styles.STYLE_ID == STYLE_PARENT --> selected="selected"<!-- ENDIF -->>{parent_styles.SPACER}{parent_styles.STYLE_NAME}</option>
  68              <!-- END parent_styles -->
  69          </select></dd>
  70      </dl>
  71      <dl>
  72          <dt><label for="style_active">{L_STYLE_ACTIVE}{L_COLON}</label></dt>
  73          <dd><label><input type="radio" class="radio" name="style_active" value="1"<!-- IF S_STYLE_ACTIVE --> id="style_active" checked="checked"<!-- ENDIF --> /> {L_YES}</label>
  74              <label><input type="radio" class="radio" name="style_active" value="0"<!-- IF not S_STYLE_ACTIVE --> id="style_active" checked="checked"<!-- ENDIF --> /> {L_NO}</label></dd>
  75      </dl>
  76      <!-- IF not S_STYLE_DEFAULT -->
  77          <dl>
  78              <dt><label for="style_default">{L_STYLE_DEFAULT}{L_COLON}</label></dt>
  79              <dd><label><input type="radio" class="radio" name="style_default" value="1" /> {L_YES}</label>
  80                  <label><input type="radio" class="radio" id="style_default" name="style_default" value="0" checked="checked" /> {L_NO}</label></dd>
  81          </dl>
  82      <!-- ENDIF -->
  83      </fieldset>
  84  
  85      <fieldset class="submit-buttons">
  86          <legend>{L_SUBMIT}</legend>
  87          <input class="button1" type="submit" name="update" value="{L_SUBMIT}" />&nbsp;
  88          <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
  89          {S_FORM_TOKEN}
  90      </fieldset>
  91  <!-- ENDIF -->
  92  
  93  <!-- IF .styles_list -->
  94      <!-- EVENT acp_styles_list_before -->
  95      <table class="table1 styles">
  96      <thead>
  97      <tr>
  98          <th>{L_STYLE_NAME}</th>
  99          <th style="width: 10%; white-space: nowrap; text-align: center;">{{ lang('STYLE_VERSION') }}</th>
 100          <th style="width: 10%; white-space: nowrap; text-align: center;">{L_STYLE_PHPBB_VERSION}</th>
 101          <!-- IF not STYLES_LIST_HIDE_COUNT --><th style="width: 10%; white-space: nowrap; text-align: center;">{L_STYLE_USED_BY}</th><!-- ENDIF -->
 102          <th style="width: 25%; white-space: nowrap; text-align: center;">{L_ACTIONS}</th>
 103          {STYLES_LIST_EXTRA}
 104          <th>&nbsp;</th>
 105      </tr>
 106      </thead>
 107      <!-- BEGIN styles_list -->
 108      <tbody id="styles-list-{styles_list.S_ROW_COUNT}">
 109      <tr class="row-highlight<!-- IF styles_list.STYLE_ID and not styles_list.STYLE_ACTIVE --> row-inactive<!-- ENDIF -->">
 110          <!-- IF styles_list.LEVEL is odd -->
 111              <!-- IF $ROW_CLASS == 'row1a' --><!-- DEFINE $ROW_CLASS = 'row1b' --><!-- ELSE --><!-- DEFINE $ROW_CLASS = 'row1a' --><!-- ENDIF -->
 112          <!-- ELSE -->
 113              <!-- IF $ROW_CLASS == 'row2a' --><!-- DEFINE $ROW_CLASS = 'row2b' --><!-- ELSE --><!-- DEFINE $ROW_CLASS = 'row2a' --><!-- ENDIF -->
 114          <!-- ENDIF -->
 115          <td class="{$ROW_CLASS}" style="padding-{S_CONTENT_FLOW_BEGIN}: {styles_list.PADDING}px;">
 116              <!-- IF styles_list.STYLE_ID and styles_list.COMMENT == '' and styles_list.STYLE_ACTIVE -->
 117                  <div class="default-style" style="display: none; float: {S_CONTENT_FLOW_END};">
 118                      <input class="radio" type="radio" name="default" value="{styles_list.STYLE_ID}"<!-- IF styles_list.DEFAULT --> checked="checked"<!-- ELSE --><!-- DEFINE $S_DEFAULT = 1 --><!-- ENDIF --> title="{L_STYLE_DEFAULT}" />
 119                  </div>
 120              <!-- ENDIF -->
 121              <!-- IF styles_list.DEFAULT or styles_list.SHOW_COPYRIGHT -->
 122                  <strong>{styles_list.STYLE_NAME}</strong>
 123                  <!-- IF styles_list.SHOW_COPYRIGHT and styles_list.COMMENT == '' --><span><br />{styles_list.STYLE_COPYRIGHT}</span><!-- ENDIF -->
 124              <!-- ELSE -->
 125                  <span>{styles_list.STYLE_NAME}</span>
 126              <!-- ENDIF -->
 127              <!-- IF styles_list.COMMENT != '' -->
 128                  <span class="error"><br />{styles_list.COMMENT}</span>
 129              <!-- ENDIF -->
 130              <!-- IF not styles_list.STYLE_ID and styles_list.COMMENT == '' -->
 131                  <span class="style-path"><br />{L_STYLE_PATH}{L_COLON} {styles_list.STYLE_PATH_FULL}</span>
 132              <!-- ENDIF -->
 133          </td>
 134          <td class="{$ROW_CLASS} users">{{ styles_list.STYLE_VERSION }}</td>
 135          <td class="{$ROW_CLASS} users">{styles_list.STYLE_PHPBB_VERSION}</td>
 136          <!-- IF not STYLES_LIST_HIDE_COUNT -->
 137              <td class="{$ROW_CLASS} users">{styles_list.USERS}</td>
 138          <!-- ENDIF -->
 139          <td class="{$ROW_CLASS} actions">
 140              <!-- BEGIN actions -->
 141                  <!-- IF styles_list.actions.S_ROW_COUNT > 0 --> | <!-- ENDIF -->
 142                  <!-- IF styles_list.actions.U_ACTION -->
 143                      <a href="{styles_list.actions.U_ACTION}"{styles_list.actions.U_ACTION_ATTR}>{styles_list.actions.L_ACTION}</a>
 144                  <!-- ENDIF -->
 145                  {styles_list.actions.HTML}
 146              <!-- END actions -->
 147          </td>
 148          {styles_list.EXTRA}
 149          <td class="{$ROW_CLASS} mark" style="width: 20px;">
 150              <!-- IF styles_list.STYLE_ID -->
 151                  {% if styles_list.STYLE_NAME !== 'prosilver' %}
 152                      <input class="checkbox" type="checkbox" name="ids[]" value="{styles_list.STYLE_ID}" />
 153                  {% endif %}
 154              <!-- ELSE -->
 155                  <!-- IF styles_list.COMMENT != '' -->
 156                      &nbsp;
 157                  <!-- ELSE -->
 158                      <input class="checkbox" type="checkbox" name="dirs[]" value="{styles_list.STYLE_PATH}" />
 159                  <!-- ENDIF -->
 160              <!-- ENDIF -->
 161          </td>
 162      </tr>
 163      </tbody>
 164      <!-- END styles_list -->
 165      </table>
 166  <!-- ENDIF -->
 167  
 168  <!-- IF .extra_actions -->
 169      <fieldset class="quick">
 170          <!-- BEGIN extra_actions -->
 171              <input type="submit" name="{extra_actions.ACTION_NAME}" class="button2" value="{extra_actions.L_ACTION}" />
 172          <!-- END extra_actions -->
 173      </fieldset>
 174  <!-- ENDIF -->
 175  
 176  </form>
 177  
 178  <!-- ENDIF -->
 179  
 180  <!-- INCLUDE overall_footer.html -->


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