RTE HTMLarea
5.5. Image default configuration
This default configuration establishes support for images in Page TSConfig. This is for use in addition to the Typical default configuration.
The following is inserted in Page TSConfig:
## Anchor classes configuration for use by the anchor accesibility feature (htmlArea RTE only)
## Add inline icons to the links
RTE.classesAnchor {
externalLink {
image = EXT:rtehtmlarea/htmlarea/plugins/TYPO3Link/img/external_link.gif
altText = LLL:EXT:rtehtmlarea/htmlarea/plugins/TYPO3Link/locallang.xml:external_link_altText
}
externalLinkInNewWindow {
image = EXT:rtehtmlarea/htmlarea/plugins/TYPO3Link/img/external_link_new_window.gif
altText = LLL:EXT:rtehtmlarea/htmlarea/plugins/TYPO3Link/locallang.xml:external_link_new_window_altText
}
internalLink {
image = EXT:rtehtmlarea/htmlarea/plugins/TYPO3Link/img/internal_link.gif
altText = LLL:EXT:rtehtmlarea/htmlarea/plugins/TYPO3Link/locallang.xml:internal_link_altText
}
internalLinkInNewWindow {
image = EXT:rtehtmlarea/htmlarea/plugins/TYPO3Link/img/internal_link_new_window.gif
altText = LLL:EXT:rtehtmlarea/htmlarea/plugins/TYPO3Link/locallang.xml:internal_link_new_window_altText
}
download {
image = EXT:rtehtmlarea/htmlarea/plugins/TYPO3Link/img/download.gif
altText = LLL:EXT:rtehtmlarea/htmlarea/plugins/TYPO3Link/locallang.xml:download_altText
}
mail {
image = EXT:rtehtmlarea/htmlarea/plugins/TYPO3Link/img/mail.gif
altText = LLL:EXT:rtehtmlarea/htmlarea/plugins/TYPO3Link/locallang.xml:mail_altText
}
}
## Default RTE configuration
RTE.default {
## Enable the image button
showButtons := addToList(image)
## Tags allowed outside p and div
## Adding img tag to the default list
proc.allowTagsOutside := addToList(img)
## Do not remove img tags
proc.entryHTMLparser_db.tags.img >
}
RTE.default.FE.showButtons < RTE.default.showButtons
RTE.default.FE.proc.allowTagsOutside < RTE.default.proc.allowTagsOutside
RTE.default.FE.proc.entryHTMLparser_db.tags.img >