Jump to content

Recommended Posts

  • Members
Posted

As a secondary airline do you mean ?

Because i might have not understand it well please write down your thought of wy would you do something like that

  • Administrators
Posted

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

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...