Beispiel #1
0
 /**
  * @return Array
  */
 function &SelectUserAddressGroupNames()
 {
     $groupsArray = array();
     if ($this->_dbConnection->Execute($this->_commandCreator->SelectUserAddressGroupNames($this->Account->IdUser))) {
         while (false !== ($row = $this->_dbConnection->GetNextRecord())) {
             $groupsArray[$row->id_group] = $row->group_nm;
         }
     }
     return $groupsArray;
 }