Example #1
0
 /**
  * Returns a multidimentional array of State where the top level are 
  * Country names and the bottom level are State objects
  * 
  * e.g.
  * 
  * array(
  *   'Canada' => array(
  *     0 => State    // Alberta
  *     1 => State    // British Columbia
  * ...
  * 
  * @param StateQuery $query  // optional StateQuery to filter results
  * @return array
  */
 public static function retrieveStatesGroupByCountry($query = null)
 {
     if (!is_null($query)) {
         \Altumo\Validation\Objects::assertObjectClass($query, 'StateQuery');
     } else {
         $query = StateQuery::create();
     }
     $result = array();
     $all_states = $query->useCountryQuery()->addAscendingOrderByColumn(CountryPeer::NAME)->endUse()->addAscendingOrderByColumn(StatePeer::NAME)->find();
     foreach ($all_states as $state) {
         $result[$state->getCountry()->getName()][] = $state;
     }
     return $result;
 }
Example #2
0
 /**
  * Setter for the current_fragment attribute.
  *
  * @param $cms_fragment
  */
 protected function setCurrentCmsFragment($cms_fragment)
 {
     $cms_fragment = \Altumo\Validation\Objects::assertObjectInstanceOfClassOrNull($cms_fragment, 'CmsFragment', '$cms_fragment expects CmsFragment or null');
     $this->current_fragment = $cms_fragment;
 }