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