Cosmetic changes
[specialops2.git] / lib / iface.topiclist.php
blobb060eee1ef3c6ebfe476ed0a211bb9ef5a37d909
1 <?php
2 // $Id$
4 interface topiclist
6 /**
7 * Constructor
8 * @param int $boardID The ID number of board to display
9 * @param int $tpp Number of topics per page
10 * @param int $page Page number (starts from 0)
12 function __construct($boardid, $tpp, $page);
14 /**
15 * Echo the topic list. Doesn't return anything.
16 * @return null
18 public function display();
20 /**
21 * Return (not echo) list of pages in a XHTML dd format (with no dl tags)
23 * If the class can't handle pages for whatever reason, then return null instead.
24 * @return string|null
26 public function pagelist();