상속: extends eZ\Publish\API\Repository\Values\ContentType\ContentType
예제 #1
0
 /**
  * @covers \eZ\Publish\Core\Repository\Values\ContentType\ContentType::getProperties
  */
 public function testObjectProperties()
 {
     $object = new ContentType(array('fieldDefinitions' => array()));
     $properties = $object->attributes();
     self::assertNotContains('internalFields', $properties, 'Internal property found ');
     self::assertContains('contentTypeGroups', $properties, 'Property not found');
     self::assertContains('fieldDefinitions', $properties, 'Property not found');
     self::assertContains('id', $properties, 'Property not found');
     self::assertContains('status', $properties, 'Property not found');
     self::assertContains('identifier', $properties, 'Property not found');
     self::assertContains('creationDate', $properties, 'Property not found');
     self::assertContains('modificationDate', $properties, 'Property not found');
     self::assertContains('creatorId', $properties, 'Property not found');
     self::assertContains('modifierId', $properties, 'Property not found');
     self::assertContains('remoteId', $properties, 'Property not found');
     self::assertContains('urlAliasSchema', $properties, 'Property not found');
     self::assertContains('nameSchema', $properties, 'Property not found');
     self::assertContains('isContainer', $properties, 'Property not found');
     self::assertContains('mainLanguageCode', $properties, 'Property not found');
     self::assertContains('defaultAlwaysAvailable', $properties, 'Property not found');
     self::assertContains('defaultSortField', $properties, 'Property not found');
     self::assertContains('defaultSortOrder', $properties, 'Property not found');
     // check for duplicates and double check existence of property
     $propertiesHash = array();
     foreach ($properties as $property) {
         if (isset($propertiesHash[$property])) {
             self::fail("Property '{$property}' exists several times in properties list");
         } elseif (!isset($object->{$property})) {
             self::fail("Property '{$property}' does not exist on object, even though it was hinted to be there");
         }
         $propertiesHash[$property] = 1;
     }
 }
 /**
  * Permite deninir los fieldDefinitions del ContenType
  * @param array $type_fields Lista de fieldDefinitions a procesar
  * @return void
  */
 private function setContentTypeStructFields($type_fields)
 {
     $fieldDefinitions = $this->contentType->getFieldDefinitions();
     $this->createUpdateRemoveFieldDefinitions($type_fields, $fieldDefinitions);
 }