예제 #1
0
파일: Street.php 프로젝트: samlx/Bulk
 /**
  * Function returns structured array for DropDown input
  *
  * @param int $city_id City id
  * @return array
  */
 public static function getStreetsArrayByCityId($city_id)
 {
     return ArrayHelper::map(Street::getStreetsByCity($city_id), 'id', 'title');
 }