Ok there is a fleet module you can download from the releases install that then you can modify teh FleetData.class.php file to,
/**
* Get an aircraft by unique name
*/
public static function getAircraftByName1() {
$sql = 'SELECT DISTINCT `icao`, `fullname`, `range`, `weight`, `cruise`, `maxpax`, `maxcargo`, `imagelink`, `downloadlink`
FROM ' . TABLE_PREFIX . 'aircraft
[b]WHERE `enabled` = 1 ';[/b]
return DB::get_results($sql);
}
The way i have is it to display Unique types only, as i have loads of a320 etc etc, so that will display all your different aircraft types.