예제 #1
0
	protected static function processSearchGetList($parameters)
	{
		$res = Location\LocationTable::getListFast($parameters);
		
		$result = array();
		while($item = $res->fetch())
			$result[] = $item;

		return $result;
	}