Computer::getTabNameForItem PHP Method

getTabNameForItem() public method

See also: CommonGLPI::getTabNameForItem()
public getTabNameForItem ( CommonGLPI $item, $withtemplate )
$item CommonGLPI
    function getTabNameForItem(CommonGLPI $item, $withtemplate = 0)
    {
        if (static::canView()) {
            switch ($item->getType()) {
                case __CLASS__:
                    $ong = array(1 => __('Operating System'));
                    return $ong;
            }
        }
    }