public function postIndex()
 {
     $this->fields = Config::get('jex.default_log_fields');
     $this->place_action = 'none';
     $this->show_select = false;
     return parent::tableResponder();
 }
Ejemplo n.º 2
0
 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();
 }
 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();
 }
Ejemplo n.º 4
0
 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();
 }