. * --------------------------------------------------------------------- */ if (!defined('GLPI_ROOT')) { die("Sorry. You can't access this file directly"); } /** * Relation between item and devices **/ class Item_DeviceProcessor extends Item_Devices { static public $itemtype_2 = 'DeviceProcessor'; static public $items_id_2 = 'deviceprocessors_id'; static protected $notable = false; static function getSpecificities($specif = '') { return ['frequency' => ['long name' => sprintf(__('%1$s (%2$s)'), __('Frequency'), __('MHz')), 'short name' => __('Frequency'), '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'), 'nbcores' => ['long name' => __('Number of cores'), 'short name' => __('Cores'), 'size' => 2, 'id' => 21, 'autocomplete' => true,], 'nbthreads' => ['long name' => __('Number of threads'), 'short name' => __('Threads'), 'size' => 2, 'id' => 22, 'autocomplete' => true,], 'busID' => parent::getSpecificities('busID')]; } }