當前位置: 首頁>>代碼示例>>PHP>>正文


PHP grocery_CRUD::unset_jquery_ui方法代碼示例

本文整理匯總了PHP中grocery_CRUD::unset_jquery_ui方法的典型用法代碼示例。如果您正苦於以下問題:PHP grocery_CRUD::unset_jquery_ui方法的具體用法?PHP grocery_CRUD::unset_jquery_ui怎麽用?PHP grocery_CRUD::unset_jquery_ui使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在grocery_CRUD的用法示例。


在下文中一共展示了grocery_CRUD::unset_jquery_ui方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: generate_crud

 protected function generate_crud($table, $subject = '')
 {
     // create CRUD object
     $this->load->library('Grocery_CRUD');
     $crud = new grocery_CRUD();
     $crud->set_table($table);
     // auto-generate subject
     if (empty($subject)) {
         $crud->set_subject(humanize(singular($table)));
     }
     // load settings from: application/config/grocery_crud.php
     $this->load->config('grocery_crud');
     $this->mCrudUnsetFields = $this->config->item('grocery_crud_unset_fields');
     if ($this->config->item('grocery_crud_unset_jquery')) {
         $crud->unset_jquery();
     }
     if ($this->config->item('grocery_crud_unset_jquery_ui')) {
         $crud->unset_jquery_ui();
     }
     if ($this->config->item('grocery_crud_unset_print')) {
         $crud->unset_print();
     }
     if ($this->config->item('grocery_crud_unset_export')) {
         $crud->unset_export();
     }
     if ($this->config->item('grocery_crud_unset_read')) {
         $crud->unset_read();
     }
     foreach ($this->config->item('grocery_crud_display_as') as $key => $value) {
         $crud->display_as($key, $value);
     }
     // other custom logic to be done outside
     $this->mCrud = $crud;
     return $crud;
 }
開發者ID:TowerX,項目名稱:ci_bootstrap_3,代碼行數:35,代碼來源:Admin_Controller.php

示例2: harga

 public function harga()
 {
     $crud = new grocery_CRUD();
     $crud->set_theme('bootstrap');
     $crud->set_subject('Harga Paket Layanan');
     $crud->set_table('p_price_nw_serv_provider');
     $crud->columns('provider_id', 'p_nw_service_id', 'price_otc', 'price_mrc');
     $crud->display_as('provider_id', 'Nama Provider')->display_as('p_nw_service_id', 'Paket')->display_as('price_otc', 'Harga OTC')->display_as('price_mrc', 'Harga MRC');
     $crud->set_relation('provider_id', 'provider', 'provider_name');
     $crud->set_relation('p_nw_service_id', 'p_nw_service', 'package');
     $crud->unset_print();
     $crud->unset_jquery_ui();
     $crud->unset_export();
     $output = $crud->render();
     $this->_example_output($output);
 }
開發者ID:afthrq,項目名稱:kp-juli2015,代碼行數:16,代碼來源:admin.php


注:本文中的grocery_CRUD::unset_jquery_ui方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。