ofc_bar_glass.php 440 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. include_once 'ofc_bar_base.php';
  3. class bar_glass_value
  4. {
  5. function bar_glass_value( $top )
  6. {
  7. $this->top = $top;
  8. // $this->bottom = $bottom;
  9. }
  10. function set_colour( $colour )
  11. {
  12. $this->colour = $colour;
  13. }
  14. function set_tooltip( $tip )
  15. {
  16. $this->tip = $tip;
  17. }
  18. }
  19. class bar_glass extends bar_base
  20. {
  21. function bar_glass()
  22. {
  23. $this->type = "bar_glass";
  24. parent::bar_base();
  25. }
  26. }