當前位置: 首頁>>代碼示例>>PHP>>正文


PHP PilotData::resetLedgerforPilot方法代碼示例

本文整理匯總了PHP中PilotData::resetLedgerforPilot方法的典型用法代碼示例。如果您正苦於以下問題:PHP PilotData::resetLedgerforPilot方法的具體用法?PHP PilotData::resetLedgerforPilot怎麽用?PHP PilotData::resetLedgerforPilot使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在PilotData的用法示例。


在下文中一共展示了PilotData::resetLedgerforPilot方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: resetpilotpay

 /**
  * Maintenance::resetpilotpay()
  * 
  * @return
  */
 public function resetpilotpay()
 {
     CodonModule::checkPermission(MAINTENANCE);
     echo '<h3>Resetting Pilot Pay</h3>';
     $allpilots = PilotData::GetAllPilots();
     foreach ($allpilots as $p) {
         #$total = PilotData::resetPilotPay($p->pilotid);
         $total = PilotData::resetLedgerforPilot($p->pilotid);
         #$total = PilotData::fillMissingLedgerForPIREPS();
         echo "{$p->firstname} {$p->lastname} - total \$ {$total}<br />";
     }
     echo 'Done';
     LogData::addLog(Auth::$userinfo->pilotid, 'Reset pilot pay');
 }
開發者ID:phpmods,項目名稱:phpvms_5.5.x,代碼行數:19,代碼來源:Maintenance.php

示例2: foreach

$sqlLines = Installer::readSQLFile(SITE_ROOT . '/install/fixtures/update.sql', TABLE_PREFIX);
foreach ($sqlLines as $sql) {
    DB::query($sql['sql']);
    if (DB::errno() != 0 && DB::errno() != 1062) {
        echo '<div id="error" style="text-align: left;">Writing to "' . $sql['table'] . '" table... ';
        echo "<br /><br />" . DB::error();
        echo '</div>';
    }
}
OperationsData::updateAircraftRankLevels();
/* Add them to the default group */
$status_type_list = Config::get('PILOT_STATUS_TYPES');
$pilot_list = PilotData::getAllPilots();
foreach ($pilot_list as $pilot) {
    echo "Fixing settings for " . $pilot->firstname . " " . $pilot->lastname . "<br>";
    PilotData::resetLedgerforPilot($pilot->pilotid);
    PilotGroups::addUsertoGroup($pilot->pilotid, DEFAULT_GROUP);
    # Reset the default groups
    $status = $status_type_list[$pilot->retired];
    foreach ($status['group_add'] as $group) {
        PilotGroups::addUsertoGroup($pilot->pilotid, $group);
    }
    foreach ($status['group_remove'] as $group) {
        PilotGroups::removeUserFromGroup($pilot->pilotid, $group);
    }
}
SettingsData::saveSetting('PHPVMS_VERSION', $FULL_VERSION_STRING);
# Don't count forced updates
if (!isset($_GET['force'])) {
    Installer::RegisterInstall($FULL_VERSION_STRING);
}
開發者ID:phpmods,項目名稱:phpvms_5.5.x,代碼行數:31,代碼來源:update.php


注:本文中的PilotData::resetLedgerforPilot方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。