ofc_bar_3d.php 271 B

12345678910111213141516171819202122
  1. <?php
  2. include_once 'ofc_bar_base.php';
  3. class bar_3d_value
  4. {
  5. function bar_3d_value( $top )
  6. {
  7. $this->top = $top;
  8. }
  9. function set_colour( $colour )
  10. {
  11. $this->colour = $colour;
  12. }
  13. function set_tooltip( $tip )
  14. {
  15. $this->tip = $tip;
  16. }
  17. }