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