[ Index ]

PHP Cross Reference of Unnamed Project

title

Body

[close]

/styles/prosilver/template/ -> ucp_main_subscribed.html (source)

   1  <!-- INCLUDE ucp_header.html -->
   2  
   3  <form id="ucp" method="post" action="{S_UCP_ACTION}"{S_FORM_ENCTYPE}>
   4  
   5  <h2>{L_TITLE}</h2>
   6  <div class="panel">
   7      <div class="inner"><span class="corners-top"><span></span></span>
   8  
   9      <p>{L_WATCHED_EXPLAIN}</p>
  10  
  11  <!-- IF .forumrow -->
  12      <ul class="topiclist">
  13          <li class="header">
  14              <dl class="icon">
  15                  <dt>{L_WATCHED_FORUMS}</dt>
  16                  <dd class="lastpost">{L_LAST_POST}</dd>
  17                  <dd class="mark">{L_MARK}</dd>
  18              </dl>
  19          </li>
  20      </ul>
  21      <ul class="topiclist cplist">
  22  
  23      <!-- BEGIN forumrow -->
  24          <li class="row<!-- IF forumrow.S_ROW_COUNT is odd --> bg1<!-- ELSE --> bg2<!-- ENDIF -->">
  25              <dl class="icon" style="background-image: url({forumrow.FORUM_FOLDER_IMG_SRC}); background-repeat: no-repeat;">
  26                  <dt><a href="{forumrow.U_VIEWFORUM}" class="forumtitle">{forumrow.FORUM_NAME}</a><br />{forumrow.FORUM_DESC}</dt>
  27                  <dd class="lastpost"><!-- IF forumrow.LAST_POST_TIME --><span><dfn>{L_LAST_POST} </dfn>{L_POST_BY_AUTHOR} {forumrow.LAST_POST_AUTHOR_FULL}
  28                      <a href="{topicrow.U_LAST_POST}">{LAST_POST_IMG}</a> <br />{forumrow.LAST_POST_TIME}</span>
  29                      <!-- ELSE -->{L_NO_POSTS}<br />&nbsp;<!-- ENDIF -->
  30                  </dd>
  31                  <dd class="mark"><input type="checkbox" name="f[{forumrow.FORUM_ID}]" id="f{forumrow.FORUM_ID}" /></dd>
  32              </dl>
  33          </li>
  34      <!-- END forumrow -->
  35      </ul>
  36  <!-- ELSEIF S_FORUM_NOTIFY -->
  37      <p><strong>{L_NO_WATCHED_FORUMS}</strong></p>
  38  <!-- ENDIF -->
  39  
  40  <!-- IF .topicrow -->
  41      <ul class="topiclist">
  42          <li class="header">
  43              <dl class="icon">
  44                  <dt>{L_WATCHED_TOPICS}</dt>
  45                  <dd class="lastpost">{L_LAST_POST}</dd>
  46                  <dd class="mark">{L_MARK}</dd>
  47              </dl>
  48          </li>
  49      </ul>
  50      <ul class="topiclist cplist">
  51  
  52      <!-- BEGIN topicrow -->
  53          <li class="row<!-- IF topicrow.S_TOPIC_REPORTED --> reported<!-- ELSEIF topicrow.S_ROW_COUNT is odd --> bg1<!-- ELSE --> bg2<!-- ENDIF -->">
  54              <dl class="icon" style="background-image: url({topicrow.TOPIC_FOLDER_IMG_SRC}); background-repeat: no-repeat;">
  55                  <dt<!-- IF topicrow.TOPIC_ICON_IMG --> style="background-image: url({T_ICONS_PATH}{topicrow.TOPIC_ICON_IMG}); background-repeat: no-repeat;"<!-- ENDIF --> title="{topicrow.TOPIC_FOLDER_IMG_ALT}">
  56                      <!-- IF topicrow.S_UNREAD_TOPIC --><a href="{topicrow.U_NEWEST_POST}">{NEWEST_POST_IMG}</a> <!-- ENDIF --><a href="{topicrow.U_VIEW_TOPIC}" class="topictitle">{topicrow.TOPIC_TITLE}</a>
  57                      <!-- IF topicrow.S_TOPIC_UNAPPROVED or topicrow.S_POSTS_UNAPPROVED --><a href="{topicrow.U_MCP_QUEUE}">{topicrow.UNAPPROVED_IMG}</a> <!-- ENDIF -->
  58                      <!-- IF topicrow.S_TOPIC_REPORTED --><a href="{topicrow.U_MCP_REPORT}">{REPORTED_IMG}</a><!-- ENDIF --><br />
  59                      <!-- IF topicrow.PAGINATION --><strong class="pagination"><span>{topicrow.PAGINATION}</span></strong><!-- ENDIF -->
  60                      <!-- IF topicrow.ATTACH_ICON_IMG -->{topicrow.ATTACH_ICON_IMG} <!-- ENDIF -->{L_POST_BY_AUTHOR} {topicrow.TOPIC_AUTHOR_FULL} &raquo; {topicrow.FIRST_POST_TIME}
  61                  </dt>
  62                  <dd class="lastpost"><span><dfn>{L_LAST_POST} </dfn>{L_POST_BY_AUTHOR} {topicrow.LAST_POST_AUTHOR_FULL}
  63                      <a href="{topicrow.U_LAST_POST}">{LAST_POST_IMG}</a> <br />{topicrow.LAST_POST_TIME}</span>
  64                  </dd>
  65                  <dd class="mark"><input type="checkbox" name="t[{topicrow.TOPIC_ID}]" id="t{topicrow.TOPIC_ID}" /></dd>
  66              </dl>
  67          </li>
  68      <!-- END topicrow -->
  69      </ul>
  70      <ul class="linklist">
  71          <li class="rightside pagination">
  72              <!-- IF TOTAL_TOPICS --> {TOTAL_TOPICS} <!-- ENDIF -->
  73              <!-- IF PAGE_NUMBER --><!-- IF PAGINATION --> &bull; <a href="#" onclick="jumpto(); return false;" title="{L_JUMP_TO_PAGE}">{PAGE_NUMBER}</a> &bull; <span>{PAGINATION}</span><!-- ELSE --> &bull; {PAGE_NUMBER}<!-- ENDIF --><!-- ENDIF -->
  74          </li>
  75      </ul>
  76  <!-- ELSEIF S_TOPIC_NOTIFY -->
  77      <p><strong>{L_NO_WATCHED_TOPICS}</strong></p>
  78  <!-- ENDIF -->
  79  
  80      <span class="corners-bottom"><span></span></span></div>
  81  </div>
  82  
  83  <!-- IF .topicrow or .forumrow -->
  84      <fieldset class="display-actions">
  85          <input type="submit" name="unwatch" value="{L_UNWATCH_MARKED}" class="button2" />
  86          <div><a href="#" onclick="marklist('ucp', 't', true); marklist('ucp', 'f', true); return false;">{L_MARK_ALL}</a> &bull; <a href="#" onclick="marklist('ucp', 't', false); marklist('ucp', 'f', false); return false;">{L_UNMARK_ALL}</a></div>
  87          {S_FORM_TOKEN}
  88      </fieldset>
  89  <!-- ENDIF -->
  90  </form>
  91  
  92  <!-- INCLUDE ucp_footer.html -->


Generated: Wed Oct 2 15:03:47 2013 Cross-referenced by PHPXref 0.7.1