
 rudie dirkx - 2010-10-23 18:08:13
 
This class would be much more useful if you put the actual rendering in seperate methods to the whole rendering would be extendable:
<?php
class Pagination {
  function displayLinks() {
    // ...
    $pageLinks .= $this->render_LinkToFirstPage();
    for ( ... ) {
      $pageLinks .= $this->render_LinkToPageX($i);
    }
    return $this->render_PageLinksContainer($pageLinks);
  }
}
?>
etcetera