null_positioner.cls.php 452 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * @package dompdf
  4. * @link http://dompdf.github.com/
  5. * @author Benj Carson <benjcarson@digitaljunkies.ca>
  6. * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
  7. */
  8. /**
  9. * Dummy positioner
  10. *
  11. * @access private
  12. * @package dompdf
  13. */
  14. class Null_Positioner extends Positioner {
  15. function __construct(Frame_Decorator $frame) {
  16. parent::__construct($frame);
  17. }
  18. function position() { return; }
  19. }