本文整理汇总了PHP中Model_Location::query方法的典型用法代码示例。如果您正苦于以下问题:PHP Model_Location::query方法的具体用法?PHP Model_Location::query怎么用?PHP Model_Location::query使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Model_Location
的用法示例。
在下文中一共展示了Model_Location::query方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: action_searchlocation
/**
* 会場検索
*
* ダイアログ表示のHTMLを返答する
*
* @access public
* @param
* @return string
* @author ida
*/
public function action_searchlocation()
{
$this->template = '';
$prefecture_id = \Input::post('prefecture_id');
$name = \Input::post('name');
$query = \Model_Location::query()->select('location_id', 'name', 'address');
if ($prefecture_id) {
$query->where(array('prefecture_id' => $prefecture_id));
}
if ($name) {
$query->where(array('name', 'LIKE', '%' . $name . '%'));
}
$locations = $query->get();
$view_model = \ViewModel::forge('admin/fleamarket/searchlocation');
$view_model->set('location_list', $locations, false);
return $view_model;
}
示例2: _validation_location_exists
/**
* 会場IDの存在チェック
*
* @access public
* @param mixed $loocation_id 会場ID
* @return bool
* @author ida
*/
public static function _validation_location_exists($location_id)
{
$count = \Model_Location::query()->where(array('location_id' => $location_id))->count();
return $count == 1;
}