本文整理汇总了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();
}
示例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();
}
示例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();
}
示例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();
}