Added some class="" to pagelist code
[specialops2.git] / lib / iface.Topiclist.php
blob5ef1f80c85a8208ca991df48667a29219c4f1123
1 <?php
2 /**
3 * Topiclist class interface
5 * @author Anthony Parsons (xmpp:ant@specialops.ath.cx)
6 * @license file://COPYING
7 * @version $Id$
8 */
9 interface topiclist
11 /**
12 * Constructor
13 * @param int $boardID The ID number of board to display
14 * @param int $tpp Number of topics per page
15 * @param int $page Page number (starts from 0)
17 function __construct($boardid, $tpp, $page);
19 /**
20 * Echo the topic list. Doesn't return anything.
21 * @return null
23 public function display();
25 /**
26 * Return (not echo) list of pages in a XHTML dd format (with no dl tags)
28 * If the class can't handle pages for whatever reason, then return null instead.
29 * @return string|null
31 public function pagelist();