当前位置: 首页>>代码示例>>PHP>>正文


PHP OperationsData::findAirport方法代码示例

本文整理汇总了PHP中OperationsData::findAirport方法的典型用法代码示例。如果您正苦于以下问题:PHP OperationsData::findAirport方法的具体用法?PHP OperationsData::findAirport怎么用?PHP OperationsData::findAirport使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在OperationsData的用法示例。


在下文中一共展示了OperationsData::findAirport方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: airportgrid

 public function airportgrid()
 {
     $page = $this->get->page;
     // get the requested page
     $limit = $this->get->rows;
     // get how many rows we want to have into the grid
     $sidx = $this->get->sidx;
     // get index row - i.e. user click to sort
     $sord = $this->get->sord;
     // get the direction
     if (!$sidx) {
         $sidx = 1;
     }
     # http://dev.phpvms.net/admin/action.php/operations/
     # ?_search=true&nd=1270940867171&rows=20&page=1&sidx=flightnum&sord=asc&searchField=code&searchString=TAY&searchOper=eq
     /* Do the search using jqGrid */
     $where = array();
     if ($this->get->_search == 'true') {
         $searchstr = jqgrid::strip($this->get->filters);
         $where_string = jqgrid::constructWhere($searchstr);
         # Append to our search, add 1=1 since it comes with AND
         #	from above
         $where[] = "1=1 {$where_string}";
     }
     # Do a search without the limits so we can find how many records
     $count = count(OperationsData::findAirport($where));
     if ($count > 0) {
         $total_pages = ceil($count / $limit);
     } else {
         $total_pages = 0;
     }
     if ($page > $total_pages) {
         $page = $total_pages;
     }
     $start = $limit * $page - $limit;
     // do not put $limit*($page - 1)
     if ($start < 0) {
         $start = 0;
     }
     # And finally do a search with the limits
     $airports = OperationsData::findAirport($where, $limit, $start, "{$sidx} {$sord}");
     if (!$airports) {
         $airports = array();
     }
     # Form the json header
     $json = array('page' => $page, 'total' => $total_pages, 'records' => $count, 'rows' => array());
     # Add each row to the above array
     foreach ($airports as $row) {
         if ($row->fuelprice == 0) {
             $row->fuelprice = 'Live';
         }
         $edit = '<a href="#" onclick="editairport(\'' . $row->icao . '\'); return false;">Edit</a>';
         $tmp = array('id' => $row->id, 'cell' => array($row->icao, $row->name, $row->country, $row->fuelprice, $row->lat, $row->lng, $edit));
         $json['rows'][] = $tmp;
     }
     header("Content-type: text/x-json");
     echo json_encode($json);
 }
开发者ID:ryanunderwood,项目名称:phpVMS,代码行数:58,代码来源:Operations.php


注:本文中的OperationsData::findAirport方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。