Source for file class_base.php

Documentation is available at class_base.php

  1. <?php
  2. class base {
  3.  
  4. function &get_attribute( $attribute ) {
  5. return $this->$attribute;
  6. }
  7. function set_attribute( $attribute, $value ) {
  8. if( isset( $value ) ) {
  9. $this->$attribute = $value;
  10. }
  11. }
  12. }
  13. ?>

Documentation generated on Tue, 24 May 2005 03:57:20 -0400 by phpDocumentor 1.3.0RC3