[ Index ]

PHP Cross Reference of phpBB-3.2.11-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.2" 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 width="10%" style="white-space: nowrap; text-align: center;">{L_STYLE_PHPBB_VERSION}</th>
 100          <!-- IF not STYLES_LIST_HIDE_COUNT --><th width="10%" style="white-space: nowrap; text-align: center;">{L_STYLE_USED_BY}</th><!-- ENDIF -->
 101          <th width="25%" style="white-space: nowrap; text-align: center;">{L_ACTIONS}</th>
 102          {STYLES_LIST_EXTRA}
 103          <th>&nbsp;</th>
 104      </tr>
 105      </thead>
 106      <!-- BEGIN styles_list -->
 107      <tbody id="styles-list-{styles_list.S_ROW_COUNT}">
 108      <tr class="row-highlight<!-- IF styles_list.STYLE_ID and not styles_list.STYLE_ACTIVE --> row-inactive<!-- ENDIF -->">
 109          <!-- IF styles_list.LEVEL is odd -->
 110              <!-- IF $ROW_CLASS == 'row1a' --><!-- DEFINE $ROW_CLASS = 'row1b' --><!-- ELSE --><!-- DEFINE $ROW_CLASS = 'row1a' --><!-- ENDIF -->
 111          <!-- ELSE -->
 112              <!-- IF $ROW_CLASS == 'row2a' --><!-- DEFINE $ROW_CLASS = 'row2b' --><!-- ELSE --><!-- DEFINE $ROW_CLASS = 'row2a' --><!-- ENDIF -->
 113          <!-- ENDIF -->
 114          <td class="{$ROW_CLASS}" style="padding-{S_CONTENT_FLOW_BEGIN}: {styles_list.PADDING}px;">
 115              <!-- IF styles_list.STYLE_ID and styles_list.COMMENT == '' and styles_list.STYLE_ACTIVE -->
 116                  <div class="default-style" style="display: none; float: {S_CONTENT_FLOW_END};">
 117                      <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}" />
 118                  </div>
 119              <!-- ENDIF -->
 120              <!-- IF styles_list.DEFAULT or styles_list.SHOW_COPYRIGHT -->
 121                  <strong>{styles_list.STYLE_NAME}</strong>
 122                  <!-- IF styles_list.SHOW_COPYRIGHT and styles_list.COMMENT == '' --><span><br />{styles_list.STYLE_COPYRIGHT}</span><!-- ENDIF -->
 123              <!-- ELSE -->
 124                  <span>{styles_list.STYLE_NAME}</span>
 125              <!-- ENDIF -->
 126              <!-- IF styles_list.COMMENT != '' -->
 127                  <span class="error"><br />{styles_list.COMMENT}</span>
 128              <!-- ENDIF -->
 129              <!-- IF not styles_list.STYLE_ID and styles_list.COMMENT == '' -->
 130                  <span class="style-path"><br />{L_STYLE_PATH}{L_COLON} {styles_list.STYLE_PATH_FULL}</span>
 131              <!-- ENDIF -->
 132          </td>
 133          <td class="{$ROW_CLASS} users">{styles_list.STYLE_PHPBB_VERSION}</td>
 134          <!-- IF not STYLES_LIST_HIDE_COUNT -->
 135              <td class="{$ROW_CLASS} users">{styles_list.USERS}</td>
 136          <!-- ENDIF -->
 137          <td class="{$ROW_CLASS} actions">
 138              <!-- BEGIN actions -->
 139                  <!-- IF styles_list.actions.S_ROW_COUNT > 0 --> | <!-- ENDIF -->
 140                  <!-- IF styles_list.actions.U_ACTION -->
 141                      <a href="{styles_list.actions.U_ACTION}"{styles_list.actions.U_ACTION_ATTR}>{styles_list.actions.L_ACTION}</a>
 142                  <!-- ENDIF -->
 143                  {styles_list.actions.HTML}
 144              <!-- END actions -->
 145          </td>
 146          {styles_list.EXTRA}
 147          <td class="{$ROW_CLASS} mark" width="20">
 148              <!-- IF styles_list.STYLE_ID -->
 149                  {% if styles_list.STYLE_NAME !== 'prosilver' %}
 150                      <input class="checkbox" type="checkbox" name="ids[]" value="{styles_list.STYLE_ID}" />
 151                  {% endif %}
 152              <!-- ELSE -->
 153                  <!-- IF styles_list.COMMENT != '' -->
 154                      &nbsp;
 155                  <!-- ELSE -->
 156                      <input class="checkbox" type="checkbox" name="dirs[]" value="{styles_list.STYLE_PATH}" />
 157                  <!-- ENDIF -->
 158              <!-- ENDIF -->
 159          </td>
 160      </tr>
 161      </tbody>
 162      <!-- END styles_list -->
 163      </table>
 164  <!-- ENDIF -->
 165  
 166  <!-- IF .extra_actions -->
 167      <fieldset class="quick">
 168          <!-- BEGIN extra_actions -->
 169              <input type="submit" name="{extra_actions.ACTION_NAME}" class="button2" value="{extra_actions.L_ACTION}" />
 170          <!-- END extra_actions -->
 171      </fieldset>
 172  <!-- ENDIF -->
 173  
 174  </form>
 175  
 176  <!-- ENDIF -->
 177  
 178  <!-- INCLUDE overall_footer.html -->


Generated: Wed Nov 11 20:33:01 2020 Cross-referenced by PHPXref 0.7.1