[ Index ]

PHP Cross Reference of BuddyPress

title

Body

[close]

/src/bp-forums/bbpress/bb-templates/kakumei/ -> view.php (source)

   1  <?php bb_get_header(); ?>
   2  
   3  <div class="bbcrumb"><a href="<?php bb_uri(); ?>"><?php bb_option('name'); ?></a> &raquo; <?php view_name(); ?></div>
   4  
   5  <?php if ( $topics || $stickies ) : ?>
   6  
   7  <table id="latest" role="main">
   8  <tr>
   9      <th><?php _e('Topic'); ?></th>
  10      <th><?php _e('Posts'); ?></th>
  11      <!-- <th><?php _e('Voices'); ?></th> -->
  12      <th><?php _e('Last Poster'); ?></th>
  13      <th><?php _e('Freshness'); ?></th>
  14  </tr>
  15  
  16  <?php if ( $stickies ) : foreach ( $stickies as $topic ) : ?>
  17  <tr<?php topic_class(); ?>>
  18      <td><?php bb_topic_labels(); ?> <big><a href="<?php topic_link(); ?>"><?php topic_title(); ?></a></big></td>
  19      <td class="num"><?php topic_posts(); ?></td>
  20      <!-- <td class="num"><?php bb_topic_voices(); ?></td> -->
  21      <td class="num"><?php topic_last_poster(); ?></td>
  22      <td class="num"><a href="<?php topic_last_post_link(); ?>" title="<?php topic_time(array('format'=>'datetime')); ?>"><?php topic_time(); ?></a></td>
  23  </tr>
  24  <?php endforeach; endif; ?>
  25  
  26  <?php if ( $topics ) : foreach ( $topics as $topic ) : ?>
  27  <tr<?php topic_class(); ?>>
  28      <td><?php bb_topic_labels(); ?> <a href="<?php topic_link(); ?>"><?php topic_title(); ?></a><?php topic_page_links(); ?></td>
  29      <td class="num"><?php topic_posts(); ?></td>
  30      <!-- <td class="num"><?php bb_topic_voices(); ?></td> -->
  31      <td class="num"><?php topic_last_poster(); ?></td>
  32      <td class="num"><a href="<?php topic_last_post_link(); ?>" title="<?php topic_time(array('format'=>'datetime')); ?>"><?php topic_time(); ?></a></td>
  33  </tr>
  34  <?php endforeach; endif; ?>
  35  </table>
  36  
  37  <p class="rss-link"><a href="<?php bb_view_rss_link(); ?>" class="rss-link"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr> feed for this view'); ?></a></p>
  38  
  39  <div class="nav">
  40  <?php view_pages(); ?>
  41  </div>
  42  <?php endif; ?>
  43  
  44  <?php bb_get_footer(); ?>


Generated: Thu Dec 7 01:01:35 2017 Cross-referenced by PHPXref 0.7.1