Example #1
0
 /**
  * Renders the pagination links
  *
  * @return  string  Pagination output (HTML)
  *
  * @uses    Gleez_Exception::handler
  */
 public function __toString()
 {
     try {
         return $this->render();
     } catch (Exception $e) {
         Gleez_Exception::handler($e);
         return '';
     }
 }