loadContentTypeGroupList() 공개 메소드

ATTENTION: This is not an API method and only meant for internal use in the REST Client implementation.
public loadContentTypeGroupList ( mixed $contentTypeGroupListReference ) : ContentTypeGroupRefList
$contentTypeGroupListReference mixed
리턴 eZ\Publish\Core\REST\Client\Values\ContentTypeGroupRefList
예제 #1
0
 /**
  * This method returns the content type groups this content type is assigned to
  *
  * @return \eZ\Publish\API\Repository\Values\ContentType\ContentTypeGroup[]
  */
 public function getContentTypeGroups()
 {
     $contentTypeGroupList = $this->contentTypeService->loadContentTypeGroupList($this->contentTypeGroupListReference);
     return $contentTypeGroupList->getContentTypeGroups();
 }