Ejemplo n.º 1
0
 /**
  * 获取小区状态
  *
  * @param int $communityId
  * @return array
  */
 public static function getCommunityGardenerState($communityId)
 {
     $communityGardenerState = Model_Community_CommunityState::getCommunityState($communityId);
     if (empty($communityGardenerState)) {
         return array();
     }
     return $communityGardenerState;
 }