EVOLUTION-MANAGER
Edit File: SnmpIdField.pm
package Api::Ocsinventory::Restapi::Snmp::Get::SnmpIdField; =for comment This function return a snmp field from his ID and field =cut # Common sub for api use Api::Ocsinventory::Restapi::ApiCommon; use Mojo::JSON qw(decode_json encode_json); sub get_snmp_field { my ($type, $id) = @_; my $database = Api::Ocsinventory::Restapi::ApiCommon::api_database_connect(); my $snmps = $database->selectall_arrayref( "SELECT * from $type WHERE ID = $id", { Slice => {} } ); return encode_json($snmps); } 1;