Jump to content

Flight type


HighFlyerPL185

Recommended Posts

  • Administrators

At the end of the app_config.php file is a set of flight type definitions. I have added to these before for clients with success. Copy it and put it in your local_config.php file and try adding the flight types you would like.

/**
* Constants
* Do not modify these! All sorts of weird s*** can happen
*/
# Set the type of flights we have
Config::Set(
'FLIGHT_TYPES', array(
'P'=>'Passenger',
'C'=>'Cargo',
'H'=>'Charter'
)
);

you could add your low cost option like this (Just do not remove any of the default types)

Config::Set(
'FLIGHT_TYPES', array(
'P'=>'Passenger',
'C'=>'Cargo',
'H'=>'Charter',
'L' => 'LowCost'
)
);

  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...