Method | Description | Returns |
---|---|---|
isLocal() | Returns the information that this is not a local component | bool |
isGlobal() | Returns the information that this is a global component | bool |
isBlank() | Returns the information that this is not a blank component | bool |
getHtml(array $variables) | Get the rendered html content for this component. Uses the active revision of the global component. | string |
getAreaType(string $areaName) | Get the input type for the specified layout area. Returns null if the area with the specified name could not be found. Uses the active revision of the global component. | InputType |
getAreaCategory(string $areaName) | Get the category for the specified layout area. Returns null if the area with the specified name could not be found. Uses the active revision of the global component. | string |
getAreaEditor(string $areaName) | Get the editor for the specified layout area. Returns null if the area with the specified name could not be found. Uses the active revision of the global component. | string |
getAreaImage(string $areaName) | Get the image for the component area with the specified name Uses the active revision of the global component. | Image |
getAreaRecord(string $areaName) | Get the record for the layout area with the specified name. Uses the active revision of the global component. | Model |
getAreaRecords(string $areaName) | Get the records for the layout area with the specified name. Uses the active revision of the global component. | Collection |
getAreaText(string $areaName) | Get the text for the component area with the specified name Uses the active revision of the global component. | string |
getAreaValues(string $areaName) | Get the values for the component area with the specified name. Uses the active revision of the global component. | array |
getAreaHtml(string $areaName) | Get the html for the component area with the specified name Uses the active revision of the global component. | string |
getAreaDate(string $areaName) | Get a date for the layout area with the specified name Uses the active revision of the global component. | DateTime |
getAreaWidget(string $areaName) | Get the widget for the component area with the specified name Uses the active revision of the global component. | Widget |
getAreaComponent(string $areaName) | Get the component for the layout area with the specified name. Uses the active revision of the global component. | Component |
getAreaCollectionElements(string $areaName) | Get the component collection elements for the layout area with the specified name. Uses the active revision of the global component. | Collection |
getAreaContent(string $areaName) | Get the content of the component area Uses the active revision of the global component. | Content |
getAreaDefaultContent(string $areaName) | Get the default content of the component area Uses the active revision of the global component. | Content |
getAreaContentOrDefault(string $areaName) | Get the content of the component area, or the default content if no content exists Uses the active revision of the global component. | Content |
getAreaAttributesContent(string $areaName) | Gets the content of every layout area attribute. If layout area does not have attributes, returns empty array. Uses the active revision of the global component. | array |
getAreaAttributesDefaultContent(string $areaName) | Gets the default content of every layout area attribute. If layout area does not have attributes, returns empty array. Uses the active revision of the global component. | array |
getAreaAttributesContentOrDefault(string $areaName) | Gets the content (or the default content if no content exists) of every layout area attribute. If layout area does not have attributes, returns empty array. Uses the active revision of the global component. | array |
getEntityAreaByLayoutArea(LayoutArea $area) | Get the link record between the layout area and content for the designated layout area. Uses the active revision of the global component. | Model |
getAreas() | Get the layout areas this component is associated with | Collection |
getAreaGroups() | Gets the layout area groups this component is associated with | Collection |
getComponentAreas() | Get the component areas from the active revision Uses the active revision of the global component. | Collection |
isUsedInContent() | Check if the component is used in content | bool |
getNumUsedInContent() | Determine how often this global component has been used in the content (or component collections) | int |
isSupportingBranches() | Checks whether the record supports branches | bool |
getAssignedWorkflow() | Get the workflow assigned to the record or entity | Workflow |
hasAssignedWorkflow() | Check whether the record has an assigned workflow | bool |
getBranches() | Get the branches associated with the record | Collection |
getBranchRevisions(RevisionBranch $branch) | Get the revisions for the provided branch | Collection |
getNumRevisionsWithoutBranch() | Get the number of revisions without branch | int |
getRevisionsWithoutBranch() | Get all revisions without branch | Collection |
getId() | int | |
getName() | string | |
getIdentifier() | string | |
getLayout() | Layout | |
getCreated() | Get the date the record was created. | DateTime |
getModified() | Get the last modification date for the record. | DateTime |
getHidden() | DateTime | |
getSite() | Site | |
getActiveRevision() | GlobalComponentRevision | |
getRevisionById(int $id) | Get the revision with the specified id | GlobalComponentRevision |
getRevisions() | Collection (GlobalComponentRevision) | |
getLastRevision() | Get the last revision for the entity. If a revision has been added, this will be the newly added revision. | GlobalComponentRevision |
getCopiedComponents() | Collection (Component) | |
getTags() | Collection (Tag) | |
getCategories() | Collection (Category) | |
isNewRecord() | Check if the record is a new record | bool |
isHierarchicalModel() | Check whether a model is a hierarchical model, i.e. can have children | bool |
isVersionedModel() | Check whether a model is versioned | bool |
getComponentAreaByLayoutArea(LayoutArea $area) | Get the link record between the layout area and content for the designated layout area. Uses the active revision to get the result | GlobalComponentRevisionArea |
getAvailableSaveActions(?Coredna\Kernel\Models\Model|null $currentRevision) | Get the save actions available for the record and provided revision being edited | array |
getAvailableSaveNewActions() | Get the actions available for saving a new version of the record. Determined whether an active revision can be set directly, and in which order the actions should be returned. | array |
getRevisionActions(Coredna\Kernel\Models\Model $revision, ?Coredna\Kernel\Models\Model|null $currentRevision) | Get the actions available for the provided revision | array |
getUpdateRevisionId(Coredna\Kernel\Models\Revision $revision) | Get the revision ID to use when updating the record. If the provided revision is a draft, the previous id is returned, if one exists. | int |
getHateoasLinks() | Get the HATEOAS links for the record | array |
getEditUrl() | Get the url for editing the record. | string |
getManageUrl() | Get the url for managing records. | string |
Common\Models\Backend\GlobalComponent
GlobalComponent