mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-21 09:38:48 +02:00
34 lines
440 B
PHP
34 lines
440 B
PHP
<?php
|
|
|
|
include_once 'ofc_bar_base.php';
|
|
|
|
|
|
class bar_glass_value
|
|
{
|
|
function bar_glass_value( $top )
|
|
{
|
|
$this->top = $top;
|
|
// $this->bottom = $bottom;
|
|
}
|
|
|
|
function set_colour( $colour )
|
|
{
|
|
$this->colour = $colour;
|
|
}
|
|
|
|
function set_tooltip( $tip )
|
|
{
|
|
$this->tip = $tip;
|
|
}
|
|
}
|
|
|
|
|
|
class bar_glass extends bar_base
|
|
{
|
|
function bar_glass()
|
|
{
|
|
$this->type = "bar_glass";
|
|
parent::bar_base();
|
|
}
|
|
}
|