HTML_Table_Matrix
[ class tree: HTML_Table_Matrix ] [ index: HTML_Table_Matrix ] [ all elements ]

Source for file OutC.php

Documentation is available at OutC.php

  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.  
  13.     /**
  14.      * Constructor
  15.      *
  16.      * @param Object $matrix Reference to the HTML_Table_Matrix instance we are
  17.      *                        filling data for.
  18.      * @param array $options Options for this Filler
  19.      * @return void 
  20.      */
  21.     function HTML_Table_Matrix_Filler_OutC(&$matrix$options = false{
  22.         $this->setOptions($options);
  23.         $this->matrix = $matrix;
  24.         $this->callback = 'array_reverse';
  25.     }
  26. }
  27. ?>

Documentation generated on Mon, 11 Mar 2019 15:32:39 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.