示例#1
0
文件: Games.php 项目: nirkbirk/site
 /**
  * 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['Games'][$this->hashCode()])) {
         return '*RECURSION*';
     }
     $alreadyDumpedObjects['Games'][$this->hashCode()] = true;
     $keys = GamesTableMap::getFieldNames($keyType);
     $result = array($keys[0] => $this->getId(), $keys[1] => $this->getName(), $keys[2] => $this->getTitle(), $keys[3] => $this->getDescription(), $keys[4] => $this->getPublisherId(), $keys[5] => $this->getDeveloperId(), $keys[6] => $this->getGbId(), $keys[7] => $this->getGbUrl(), $keys[8] => $this->getGbImage(), $keys[9] => $this->getGbThumb());
     $virtualColumns = $this->virtualColumns;
     foreach ($virtualColumns as $key => $virtualColumn) {
         $result[$key] = $virtualColumn;
     }
     if ($includeForeignObjects) {
         if (null !== $this->aCompaniesRelatedByPublisherId) {
             switch ($keyType) {
                 case TableMap::TYPE_CAMELNAME:
                     $key = 'companies';
                     break;
                 case TableMap::TYPE_FIELDNAME:
                     $key = 'companies';
                     break;
                 default:
                     $key = 'Companies';
             }
             $result[$key] = $this->aCompaniesRelatedByPublisherId->toArray($keyType, $includeLazyLoadColumns, $alreadyDumpedObjects, true);
         }
         if (null !== $this->aCompaniesRelatedByDeveloperId) {
             switch ($keyType) {
                 case TableMap::TYPE_CAMELNAME:
                     $key = 'companies';
                     break;
                 case TableMap::TYPE_FIELDNAME:
                     $key = 'companies';
                     break;
                 default:
                     $key = 'Companies';
             }
             $result[$key] = $this->aCompaniesRelatedByDeveloperId->toArray($keyType, $includeLazyLoadColumns, $alreadyDumpedObjects, true);
         }
         if (null !== $this->collGameLinkss) {
             switch ($keyType) {
                 case TableMap::TYPE_CAMELNAME:
                     $key = 'gameLinkss';
                     break;
                 case TableMap::TYPE_FIELDNAME:
                     $key = 'game_linkss';
                     break;
                 default:
                     $key = 'GameLinkss';
             }
             $result[$key] = $this->collGameLinkss->toArray(null, false, $keyType, $includeLazyLoadColumns, $alreadyDumpedObjects);
         }
         if (null !== $this->collGamePlatformss) {
             switch ($keyType) {
                 case TableMap::TYPE_CAMELNAME:
                     $key = 'gamePlatformss';
                     break;
                 case TableMap::TYPE_FIELDNAME:
                     $key = 'game_platformss';
                     break;
                 default:
                     $key = 'GamePlatformss';
             }
             $result[$key] = $this->collGamePlatformss->toArray(null, false, $keyType, $includeLazyLoadColumns, $alreadyDumpedObjects);
         }
         if (null !== $this->collRatingHeaderss) {
             switch ($keyType) {
                 case TableMap::TYPE_CAMELNAME:
                     $key = 'ratingHeaderss';
                     break;
                 case TableMap::TYPE_FIELDNAME:
                     $key = 'rating_headerss';
                     break;
                 default:
                     $key = 'RatingHeaderss';
             }
             $result[$key] = $this->collRatingHeaderss->toArray(null, false, $keyType, $includeLazyLoadColumns, $alreadyDumpedObjects);
         }
         if (null !== $this->collUserReviewss) {
             switch ($keyType) {
                 case TableMap::TYPE_CAMELNAME:
                     $key = 'userReviewss';
                     break;
                 case TableMap::TYPE_FIELDNAME:
                     $key = 'user_reviewss';
                     break;
                 default:
                     $key = 'UserReviewss';
             }
             $result[$key] = $this->collUserReviewss->toArray(null, false, $keyType, $includeLazyLoadColumns, $alreadyDumpedObjects);
         }
     }
     return $result;
 }