. * --------------------------------------------------------------------- */ if (!defined('GLPI_ROOT')) { die("Sorry. You can't access this file directly"); } /** * Relation between item and devices **/ class Item_DeviceGraphicCard extends Item_Devices { static public $itemtype_2 = 'DeviceGraphicCard'; static public $items_id_2 = 'devicegraphiccards_id'; static protected $notable = false; static function getSpecificities($specif = '') { return ['memory' => ['long name' => sprintf(__('%1$s (%2$s)'), _n('Memory', 'Memories', 1), __('Mio')), 'short name' => _n('Memory', 'Memories', 1), 'size' => 10, 'id' => 20, 'autocomplete' => true,], 'serial' => parent::getSpecificities('serial'), 'otherserial' => parent::getSpecificities('otherserial'), 'locations_id' => parent::getSpecificities('locations_id'), 'states_id' => parent::getSpecificities('states_id'), 'busID' => parent::getSpecificities('busID')]; } }