Example #1
0
 /**
  * Exports the object as an array.
  *
  * You can specify the key type of the array by passing one of the class
  * type constants.
  *
  * @param     string  $keyType (optional) One of the class type constants TableMap::TYPE_PHPNAME, TableMap::TYPE_CAMELNAME,
  *                    TableMap::TYPE_COLNAME, TableMap::TYPE_FIELDNAME, TableMap::TYPE_NUM.
  *                    Defaults to TableMap::TYPE_PHPNAME.
  * @param     boolean $includeLazyLoadColumns (optional) Whether to include lazy loaded columns. Defaults to TRUE.
  * @param     array $alreadyDumpedObjects List of objects to skip to avoid recursion
  * @param     boolean $includeForeignObjects (optional) Whether to include hydrated related objects. Default to FALSE.
  *
  * @return array an associative array containing the field names (as keys) and field values
  */
 public function toArray($keyType = TableMap::TYPE_PHPNAME, $includeLazyLoadColumns = true, $alreadyDumpedObjects = array(), $includeForeignObjects = false)
 {
     if (isset($alreadyDumpedObjects['Startgroup'][$this->hashCode()])) {
         return '*RECURSION*';
     }
     $alreadyDumpedObjects['Startgroup'][$this->hashCode()] = true;
     $keys = StartgroupTableMap::getFieldNames($keyType);
     $result = array($keys[0] => $this->getId(), $keys[1] => $this->getName(), $keys[2] => $this->getSlug(), $keys[3] => $this->getCompetitionId(), $keys[4] => $this->getEventId(), $keys[5] => $this->getPerformanceTotalStatisticId(), $keys[6] => $this->getPerformanceExecutionStatisticId(), $keys[7] => $this->getPerformanceChoreographyStatisticId(), $keys[8] => $this->getPerformanceMusicAndTimingStatisticId());
     $virtualColumns = $this->virtualColumns;
     foreach ($virtualColumns as $key => $virtualColumn) {
         $result[$key] = $virtualColumn;
     }
     if ($includeForeignObjects) {
         if (null !== $this->aCompetition) {
             switch ($keyType) {
                 case TableMap::TYPE_CAMELNAME:
                     $key = 'competition';
                     break;
                 case TableMap::TYPE_FIELDNAME:
                     $key = 'kk_junia_competition';
                     break;
                 default:
                     $key = 'Competition';
             }
             $result[$key] = $this->aCompetition->toArray($keyType, $includeLazyLoadColumns, $alreadyDumpedObjects, true);
         }
         if (null !== $this->aEvent) {
             switch ($keyType) {
                 case TableMap::TYPE_CAMELNAME:
                     $key = 'event';
                     break;
                 case TableMap::TYPE_FIELDNAME:
                     $key = 'kk_junia_event';
                     break;
                 default:
                     $key = 'Event';
             }
             $result[$key] = $this->aEvent->toArray($keyType, $includeLazyLoadColumns, $alreadyDumpedObjects, true);
         }
         if (null !== $this->aPerformanceTotalStatistic) {
             switch ($keyType) {
                 case TableMap::TYPE_CAMELNAME:
                     $key = 'performanceStatistic';
                     break;
                 case TableMap::TYPE_FIELDNAME:
                     $key = 'kk_junia_performance_statistic';
                     break;
                 default:
                     $key = 'PerformanceStatistic';
             }
             $result[$key] = $this->aPerformanceTotalStatistic->toArray($keyType, $includeLazyLoadColumns, $alreadyDumpedObjects, true);
         }
         if (null !== $this->aPerformanceExecutionStatistic) {
             switch ($keyType) {
                 case TableMap::TYPE_CAMELNAME:
                     $key = 'performanceStatistic';
                     break;
                 case TableMap::TYPE_FIELDNAME:
                     $key = 'kk_junia_performance_statistic';
                     break;
                 default:
                     $key = 'PerformanceStatistic';
             }
             $result[$key] = $this->aPerformanceExecutionStatistic->toArray($keyType, $includeLazyLoadColumns, $alreadyDumpedObjects, true);
         }
         if (null !== $this->aPerformanceChoreographyStatistic) {
             switch ($keyType) {
                 case TableMap::TYPE_CAMELNAME:
                     $key = 'performanceStatistic';
                     break;
                 case TableMap::TYPE_FIELDNAME:
                     $key = 'kk_junia_performance_statistic';
                     break;
                 default:
                     $key = 'PerformanceStatistic';
             }
             $result[$key] = $this->aPerformanceChoreographyStatistic->toArray($keyType, $includeLazyLoadColumns, $alreadyDumpedObjects, true);
         }
         if (null !== $this->aPerformanceMusicAndTimingStatistic) {
             switch ($keyType) {
                 case TableMap::TYPE_CAMELNAME:
                     $key = 'performanceStatistic';
                     break;
                 case TableMap::TYPE_FIELDNAME:
                     $key = 'kk_junia_performance_statistic';
                     break;
                 default:
                     $key = 'PerformanceStatistic';
             }
             $result[$key] = $this->aPerformanceMusicAndTimingStatistic->toArray($keyType, $includeLazyLoadColumns, $alreadyDumpedObjects, true);
         }
         if (null !== $this->collRoutines) {
             switch ($keyType) {
                 case TableMap::TYPE_CAMELNAME:
                     $key = 'routines';
                     break;
                 case TableMap::TYPE_FIELDNAME:
                     $key = 'kk_junia_routines';
                     break;
                 default:
                     $key = 'Routines';
             }
             $result[$key] = $this->collRoutines->toArray(null, false, $keyType, $includeLazyLoadColumns, $alreadyDumpedObjects);
         }
         if (null !== $this->collJudges) {
             switch ($keyType) {
                 case TableMap::TYPE_CAMELNAME:
                     $key = 'judges';
                     break;
                 case TableMap::TYPE_FIELDNAME:
                     $key = 'kk_junia_judges';
                     break;
                 default:
                     $key = 'Judges';
             }
             $result[$key] = $this->collJudges->toArray(null, false, $keyType, $includeLazyLoadColumns, $alreadyDumpedObjects);
         }
     }
     return $result;
 }