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


PHP Proc::ResultSelect2方法代碼示例

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


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

示例1: actionSelectinput

 public function actionSelectinput($q = null)
 {
     return Proc::ResultSelect2(['model' => new Material(), 'q' => $q, 'methodquery' => 'selectinput']);
 }
開發者ID:vovancho,項目名稱:yii2test,代碼行數:4,代碼來源:MaterialController.php

示例2: actionSelectinputforosmotrakt

 public function actionSelectinputforosmotrakt($q = null)
 {
     if (Yii::$app->request->isAjax) {
         return Proc::ResultSelect2(['model' => new TrOsnov(), 'q' => $q, 'methodquery' => 'selectinputforosmotrakt']);
     }
 }
開發者ID:vovancho,項目名稱:yii2test,代碼行數:6,代碼來源:TrOsnovController.php

示例3: actionSelectinput

 public function actionSelectinput($field, $q = null)
 {
     return Proc::ResultSelect2(['model' => new Preparat(), 'field' => $field, 'q' => $q]);
 }
開發者ID:vovancho,項目名稱:yii2test,代碼行數:4,代碼來源:PreparatController.php

示例4: actionSelectinputforstreet

 public function actionSelectinputforstreet($q = null, $fias_city = null)
 {
     if (Yii::$app->request->isAjax) {
         return Proc::ResultSelect2(['model' => new Fias(), 'q' => $q, 'methodquery' => 'selectinputforstreet', 'methodparams' => ['fias_city' => $fias_city]]);
     }
 }
開發者ID:vovancho,項目名稱:yii2test,代碼行數:6,代碼來源:FiasController.php

示例5: actionSelectinput

 public function actionSelectinput($field, $q = null)
 {
     return Proc::ResultSelect2(['model' => new Dolzh(), 'field' => $field, 'q' => $q, 'order' => 'dolzh_name']);
 }
開發者ID:vovancho,項目名稱:yii2test,代碼行數:4,代碼來源:DolzhController.php

示例6: actionSelectinputemloyee

 public function actionSelectinputemloyee($q = null)
 {
     return Proc::ResultSelect2(['model' => new Employee(), 'q' => $q, 'methodquery' => 'selectinput']);
 }
開發者ID:vovancho,項目名稱:yii2test,代碼行數:4,代碼來源:EmployeeController.php

示例7: actionSelectinput

 public function actionSelectinput($field, $q = null)
 {
     return Proc::ResultSelect2(['model' => new Authuser(), 'field' => $field, 'q' => $q, 'order' => 'auth_user_fullname']);
 }
開發者ID:vovancho,項目名稱:yii2test,代碼行數:4,代碼來源:AuthuserController.php

示例8: actionSelectinput

 public function actionSelectinput($field, $q = null)
 {
     return Proc::ResultSelect2(['model' => new Reason(), 'field' => $field, 'q' => $q, 'order' => 'reason_text']);
 }
開發者ID:vovancho,項目名稱:yii2test,代碼行數:4,代碼來源:ReasonController.php

示例9: actionSelectinputfordiag

 public function actionSelectinputfordiag($q = null)
 {
     if (Yii::$app->request->isAjax) {
         return Proc::ResultSelect2(['model' => new Classmkb(), 'q' => $q, 'methodquery' => 'selectinput']);
     }
 }
開發者ID:vovancho,項目名稱:yii2test,代碼行數:6,代碼來源:ClassmkbController.php

示例10: actionSelectinputfortrmatosmotr

 public function actionSelectinputfortrmatosmotr($q = null, $idosmotraktmat = null)
 {
     if (Yii::$app->request->isAjax) {
         return Proc::ResultSelect2(['model' => new TrMat(), 'q' => $q, 'methodquery' => 'selectinputfortrmatosmotr', 'methodparams' => ['idosmotraktmat' => $idosmotraktmat]]);
     }
 }
開發者ID:vovancho,項目名稱:yii2test,代碼行數:6,代碼來源:TrMatController.php


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