本文整理匯總了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']);
}
示例2: actionSelectinputforosmotrakt
public function actionSelectinputforosmotrakt($q = null)
{
if (Yii::$app->request->isAjax) {
return Proc::ResultSelect2(['model' => new TrOsnov(), 'q' => $q, 'methodquery' => 'selectinputforosmotrakt']);
}
}
示例3: actionSelectinput
public function actionSelectinput($field, $q = null)
{
return Proc::ResultSelect2(['model' => new Preparat(), 'field' => $field, 'q' => $q]);
}
示例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]]);
}
}
示例5: actionSelectinput
public function actionSelectinput($field, $q = null)
{
return Proc::ResultSelect2(['model' => new Dolzh(), 'field' => $field, 'q' => $q, 'order' => 'dolzh_name']);
}
示例6: actionSelectinputemloyee
public function actionSelectinputemloyee($q = null)
{
return Proc::ResultSelect2(['model' => new Employee(), 'q' => $q, 'methodquery' => 'selectinput']);
}
示例7: actionSelectinput
public function actionSelectinput($field, $q = null)
{
return Proc::ResultSelect2(['model' => new Authuser(), 'field' => $field, 'q' => $q, 'order' => 'auth_user_fullname']);
}
示例8: actionSelectinput
public function actionSelectinput($field, $q = null)
{
return Proc::ResultSelect2(['model' => new Reason(), 'field' => $field, 'q' => $q, 'order' => 'reason_text']);
}
示例9: actionSelectinputfordiag
public function actionSelectinputfordiag($q = null)
{
if (Yii::$app->request->isAjax) {
return Proc::ResultSelect2(['model' => new Classmkb(), 'q' => $q, 'methodquery' => 'selectinput']);
}
}
示例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]]);
}
}