home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / php / PEAR / HTML / Table / Matrix / Filler / OutC.php < prev    next >
Encoding:
PHP Script  |  2008-07-02  |  776 b   |  29 lines

  1. <?php
  2. /* vim: set expandtab tabstop=4 shiftwidth=4: */
  3. require_once 'HTML/Table/Matrix/Filler.php';
  4. require_once 'HTML/Table/Matrix/Filler/InC.php';
  5.  
  6. /**
  7.  * Fill outwards, clockwise.
  8.  *
  9.  * @author Arpad Ray <arpad@rajeczy.com>
  10.  * @package HTML_Table_Matrix
  11.  */
  12. class HTML_Table_Matrix_Filler_OutC extends HTML_Table_Matrix_Filler_InC {
  13.  
  14.     /**
  15.      * Constructor
  16.      *
  17.      * @param Object $matrix Reference to the HTML_Table_Matrix instance we are
  18.      *                       filling data for.
  19.      * @param array $options Options for this Filler
  20.      * @return void
  21.      */
  22.     function HTML_Table_Matrix_Filler_OutC(&$matrix, $options = false) {
  23.         $this->setOptions($options);
  24.         $this->matrix = $matrix;
  25.         $this->callback = 'array_reverse';
  26.     }
  27. }
  28. ?>
  29.