Moderators mark1million Posted January 9, 2010 Moderators Report Share Posted January 9, 2010 Nabeel, Im trying to display the pilot group ie active inactive on the pilots list, i have read through the api but just seem to be going round in circles, Can you point me in the right direction? Quote Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted January 9, 2010 Administrators Report Share Posted January 9, 2010 You want just the active/inactive pilots? Or reading from a group? Active pilots: <?php // Parameters to search by, p.column_name => value $params = array( 'p.retired' => 0 ); $pilots = PilotData::findPilots($params); If you want by group: $pilots = PilotGroups::getUsersInGroup('Group Name'); Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.