A content type in CONTENIDO is a place where authors can enter or select data to display on the frontend page.
CONTENIDO comes with several content types for different purposes. Content types are defined and set in the specific module and have two display modes: the output mode for the frontend and the edit mode for the backend.
Every content type has it's unique content ID. That gives you the possibility to use multiple same content types within the same article but with different content.
The module code parser detects content types by it's short notation. This is like accessing an array entry: CONTENT_TYPE[ID]. If you define the content ID twice or more, that content type will manage the same content.
Below you find a list with all content types. Content types are stored in database in the table "type".
Content type name | Name of corresponding class | Description |
---|---|---|
cContentTypeHtmlhead | ||
CMS_HTML | cContentTypeHtml | |
CMS_TEXT | cContentTypeText | |
CMS_IMG | cContentTypeImg | |
CMS_IMGDESCR | cContentTypeImgdescr | |
CMS_LINK | cContentTypeLink | |
CMS_LINKTARGET | cContentTypeLinktarget | |
CMS_LINKDESCR | cContentTypeLinkdescr | |
CMS_HEAD | cContentTypeHead | |
CMS_SWF | ||
CMS_LINKTITLE | ||
CMS_LINKEDIT | ||
CMS_RAWLINK | ||
CMS_IMGEDIT | ||
CMS_IMGTITLE | ||
CMS_SIMPLELINKEDIT | ||
CMS_HTMLTEXT | ||
CMS_EASYIMGEDIT | ||
CMS_DATE | cContentTypeDate | Content type CMS_DATE which allows the editor to select a date from a calendar and a date format. The selected date is then shown in the selected format. |
CMS_TEASER | cContentTypeTeaser | |
CMS_FILELIST | cContentTypeFilelist | |
CMS_IMGEDITOR | cContentTypeImgeditor | |
CMS_LINKEDITOR | cContentTypeLinkeditor |
This list is not complete yet.