本文整理匯總了PHP中Institution::InstitutionSearch方法的典型用法代碼示例。如果您正苦於以下問題:PHP Institution::InstitutionSearch方法的具體用法?PHP Institution::InstitutionSearch怎麽用?PHP Institution::InstitutionSearch使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Institution
的用法示例。
在下文中一共展示了Institution::InstitutionSearch方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: institutionsearchAction
public function institutionsearchAction()
{
$ins = new Institution();
$criteria = $this->sanitize($_POST);
$inssearch = $ins->InstitutionSearch($criteria);
$this->view->assign('institute', $inssearch);
$this->view->assign('geo1', $criteria['geo1']);
$this->view->assign('geo2', $criteria['geo2']);
$this->view->assign('geo3', $criteria['geo3']);
$this->view->assign('geo4', $criteria['geo4']);
$this->view->assign('geo5', $criteria['geo5']);
$this->view->assign('geo6', $criteria['geo6']);
$this->view->assign('geo7', $criteria['geo7']);
$this->view->assign('geo8', $criteria['geo8']);
$this->view->assign('geo9', $criteria['geo9']);
# CREATING HELPER
$helper = new Helper();
# GETTING INSTITUTION TYPES
$types = $helper->getInstitutionTypes();
$this->view->assign('institutiontypes', $types);
# GETTING LOCATIONS
$this->viewAssignEscaped('locations', Location::getAll());
# GETTING SPONSORS
$this->view->assign('sponsors', $helper->getSponsors());
}