コード例 #1
0
ファイル: Maintenance.php プロジェクト: ryanunderwood/phpVMS
 public static function resetpirepcount()
 {
     echo '<h3>Reset PIREP Counts</h3>';
     $all_pilots = PilotData::findPilots(array());
     foreach ($all_pilots as $pilot) {
         $pireps = PIREPData::getReportsByAcceptStatus($pilot->pilotid, PIREP_ACCEPTED);
         $total = count($pireps);
         unset($pireps);
         $code = PilotData::getPilotCode($pilot->code, $pilot->pilotid);
         echo "{$code} - {$pilot->firstname} {$pilot->lastname} - {$total} pireps<br />";
         # Update the pireps table
         PilotData::updateProfile($pilot->pilotid, array('totalpireps' => $total));
     }
     echo 'Completed!';
 }