. * --------------------------------------------------------------------- */ /** * @since 0.84 */ if (!defined('GLPI_ROOT')) { die("Sorry. You can't access this file directly"); } /** * Relation between item and devices **/ class Item_DeviceNetworkCard extends Item_Devices { static public $itemtype_2 = 'DeviceNetworkCard'; static public $items_id_2 = 'devicenetworkcards_id'; static protected $notable = false; static function getSpecificities($specif = '') { return ['mac' => ['long name' => __('MAC address'), 'short name' => __('MAC address'), 'size' => 18, 'id' => 20, 'datatype' => 'mac', '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')]; } }