Ejemplo n.º 1
0
 /**
  * Output the layout to the canvas
  *
  * @return bool Was the output 'good' (true) or 'bad' (false).
  * @access private
  */
 function _done()
 {
     if ($this->_part1 && $this->_part2) {
         return $this->_part1->_done() && $this->_part2->_done();
     }
     return true;
 }
Ejemplo n.º 2
0
 /**
  * Output the layout to the canvas
  * @access private
  */
 function _done()
 {
     $this->_part1->_done();
     $this->_part2->_done();
 }