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


PHP OperationsData::GetAllHubs方法代碼示例

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


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

示例1: index

 /**
  * Pilots::index()
  * 
  * @return
  */
 public function index()
 {
     // Get all of our hubs, and list pilots by hub
     $allhubs = OperationsData::GetAllHubs();
     if (!$allhubs) {
         $allhubs = array();
     }
     foreach ($allhubs as $hub) {
         $this->set('title', $hub->name);
         $this->set('icao', $hub->icao);
         $pilot_list = PilotData::findPilots(array('p.hub' => $hub->icao));
         $this->set('allpilots', $pilot_list);
         # deprecated
         $this->set('pilot_list', $pilot_list);
         $this->render('pilots_list.tpl');
     }
     $nohub = PilotData::findPilots(array('p.hub' => ''));
     if (!$nohub) {
         return;
     }
     $this->set('title', 'No Hub');
     $this->set('icao', '');
     $this->set('allpilots', $nohub);
     # deprecated
     $this->set('pilot_list', $nohub);
     $this->render('pilots_list.tpl');
 }
開發者ID:Galihom,項目名稱:phpVMS,代碼行數:32,代碼來源:Pilots.php

示例2: ShowForm

 protected function ShowForm()
 {
     $this->set('extrafields', RegistrationData::GetCustomFields());
     $this->set('allairlines', OperationsData::GetAllAirlines(true));
     $this->set('allhubs', OperationsData::GetAllHubs());
     $this->set('countries', Countries::getAllCountries());
     $this->render('registration_mainform.tpl');
 }
開發者ID:ryanunderwood,項目名稱:phpVMS,代碼行數:8,代碼來源:Registration.php

示例3: foreach

							</select>
						</td>
					</tr>
					<tr>
						<td align="right"><b>Transfer Hours:</b></td>
						<td><input type="text" name="transferhours" value="<?php 
    echo $pilot->transferhours;
    ?>
" /></td>
					</tr>
					<tr> 
						<td align="right"><b>Hub:</b></td>
						<td>
							<select name="hub">
							<?php 
    $allhubs = OperationsData::GetAllHubs();
    foreach ($allhubs as $hub) {
        if ($pilot->hub == $hub->icao) {
            $sel = ' selected';
        } else {
            $sel = '';
        }
        echo '<option value="' . $hub->icao . '" ' . $sel . '>' . $hub->icao . ' - ' . $hub->name . '</option>';
    }
    ?>
	
							</select>
						</td>
					</tr>
					<tr>
						<td align="right"><b>Total Flights:</b></td>
開發者ID:parkho,項目名稱:Pilot-Manager-V2.2,代碼行數:31,代碼來源:edit_pilots.php


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