本文整理匯總了PHP中SearchForm::getModel方法的典型用法代碼示例。如果您正苦於以下問題:PHP SearchForm::getModel方法的具體用法?PHP SearchForm::getModel怎麽用?PHP SearchForm::getModel使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類SearchForm
的用法示例。
在下文中一共展示了SearchForm::getModel方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: makeSearchAndListView
/**
* Make search and list view.
* @param SearchForm $searchModel
* @param string $moduleName
* @param RedBeanModelDataProvider $dataProvider
* @return \SearchAndListView
*/
protected function makeSearchAndListView($searchModel, $moduleName, $dataProvider)
{
$listModel = $searchModel->getModel();
return new SearchAndListView($this->getId(), $this->getModule()->getId(), $searchModel, $listModel, $moduleName, $dataProvider, GetUtil::resolveSelectedIdsFromGet());
}
示例2: makeListView
protected function makeListView(SearchForm $searchForm, $dataProvider, $listViewClassName = null)
{
assert('is_string($listViewClassName) || $listViewClassName == null');
$listModel = $searchForm->getModel();
if ($listViewClassName == null) {
$listViewClassName = $this->getModule()->getPluralCamelCasedName() . 'ListView';
}
$listView = new $listViewClassName($this->getId(), $this->getModule()->getId(), get_class($listModel), $dataProvider, GetUtil::resolveSelectedIdsFromGet(), null, array(), $searchForm->getListAttributesSelector(), $searchForm->getKanbanBoard());
return $listView;
}