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


PHP AdminController::tableResponder方法代码示例

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


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

示例1: postIndex

 public function postIndex()
 {
     $this->fields = Config::get('jex.default_log_fields');
     $this->place_action = 'none';
     $this->show_select = false;
     return parent::tableResponder();
 }
开发者ID:awidarto,项目名称:bilnatracker,代码行数:7,代码来源:DeliverylogController.php

示例2: postIndex

 public function postIndex()
 {
     $this->fields = $this->default_fields;
     /*
             $categoryFilter = Input::get('categoryFilter');
             if($categoryFilter != ''){
                 $this->additional_query = array('shopcategoryLink'=>$categoryFilter, 'group_id'=>4);
             }
     $db = Config::get('jayon.main_db');
     $this->def_order_by = 'ordertime';
             $this->def_order_dir = 'desc';
             $this->place_action = 'first';
             $this->show_select = true;
     $this->sql_key = 'delivery_id';
             $this->sql_table_name = Config::get('jayon.incoming_delivery_table');
             $this->sql_connection = 'mysql';
     */
     return parent::tableResponder();
 }
开发者ID:awidarto,项目名称:bilnatracker,代码行数:19,代码来源:CourierController.php

示例3: postIndex

 public function postIndex()
 {
     $this->fields = array(array('JEXDeviceId', array('kind' => 'text', 'query' => 'like', 'pos' => 'both', 'show' => true)), array('appIdentifier', array('kind' => 'text', 'query' => 'like', 'pos' => 'both', 'show' => true)), array('appName', array('kind' => 'text', 'query' => 'like', 'pos' => 'both', 'show' => true)), array('appVersion', array('kind' => 'text', 'query' => 'like', 'pos' => 'both', 'show' => true)), array('deviceBrand', array('kind' => 'text', 'query' => 'like', 'pos' => 'both', 'show' => true)), array('deviceType', array('kind' => 'text', 'query' => 'like', 'pos' => 'both', 'show' => true)), array('installationId', array('kind' => 'text', 'query' => 'like', 'pos' => 'both', 'show' => true)), array('parseVersion', array('kind' => 'text', 'query' => 'like', 'pos' => 'both', 'show' => true)), array('timeZone_on', array('kind' => 'text', 'query' => 'like', 'pos' => 'both', 'show' => true)));
     $this->place_action = 'first';
     Breadcrumbs::addCrumb('Parse Device Registry', URL::to(strtolower($this->controller_name)));
     $this->additional_filter = View::make(strtolower($this->controller_name) . '.addfilter')->with('sync_url', strtolower($this->controller_name) . '/synclegacy')->render();
     $this->js_additional_param = "aoData.push( { 'name':'categoryFilter', 'value': \$('#assigned-product-filter').val() } );";
     $this->product_info_url = strtolower($this->controller_name) . '/info';
     /*
     $categoryFilter = Input::get('categoryFilter');
     if($categoryFilter != ''){
         $this->additional_query = array('shopcategoryLink'=>$categoryFilter, 'group_id'=>4);
     }
     */
     return parent::tableResponder();
 }
开发者ID:awidarto,项目名称:bilnatracker,代码行数:16,代码来源:ParsedeviceController.php

示例4: postIndex

 public function postIndex()
 {
     $this->place_action = 'first';
     Breadcrumbs::addCrumb('Parse Device Registry', URL::to(strtolower($this->controller_name)));
     $this->additional_filter = View::make(strtolower($this->controller_name) . '.addfilter')->with('sync_url', strtolower($this->controller_name) . '/synclegacy')->render();
     $this->js_additional_param = "aoData.push( { 'name':'categoryFilter', 'value': \$('#assigned-product-filter').val() } );";
     $this->product_info_url = strtolower($this->controller_name) . '/info';
     $this->def_order_by = 'createdAt';
     $this->def_order_dir = 'desc';
     /*
     $categoryFilter = Input::get('categoryFilter');
     if($categoryFilter != ''){
         $this->additional_query = array('shopcategoryLink'=>$categoryFilter, 'group_id'=>4);
     }
     */
     return parent::tableResponder();
 }
开发者ID:awidarto,项目名称:jexadmin,代码行数:17,代码来源:ParsedeviceController.php


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