当前位置: 首页>>代码示例>>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;未经允许,请勿转载。