Source for file PositionSP.class.php

Documentation is available at PositionSP.class.php

  1. <?php
  2.  
  3. require_once(HARMONI."GUIManager/StyleProperty.class.php");
  4. require_once(HARMONI."GUIManager/StyleComponents/PositionSC.class.php");
  5.  
  6. /**
  7. * The PostionSP represents the 'position' StyleProperty.
  8. *
  9. * A StyleProperty (SP) is one of the tree building pieces of CSS styles. It stores
  10. * information about a single CSS style property by storing one or more
  11. * <code>StyleComponents</code>.
  12. *
  13. * The other two CSS styles building pieces are <code>StyleComponents</code> and
  14. * <code>StyleCollections</code>.
  15. *
  16. * @package harmoni.gui.sps
  17. *
  18. * @copyright Copyright &copy; 2005, Middlebury College
  19. * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License (GPL)
  20. *
  21. * @version $Id: PositionSP.class.php,v 1.5 2006/06/02 15:56:08 cws-midd Exp $
  22. */
  23. class PositionSP extends StyleProperty {
  24.  
  25. /**
  26. * The constructor.
  27. * @access public
  28. * @param string value The value of the position.
  29. ***/
  30. function PositionSP($value) {
  31. $this->StyleProperty("position", "Position", "This property specifies the position.");
  32. if (!is_null($value)) $this->addSC(new PositionSC($value));
  33. }
  34.  
  35. }
  36.  
  37. ?>

Documentation generated on Wed, 19 Sep 2007 10:25:31 -0400 by phpDocumentor 1.3.0RC3