

Fonctions membres publiques | |
| init ($elRef='', $recPid=0) | |
| setRelPath ($path) | |
| evalWriteFile ($pArr, $currentRecord) | |
| RTE_transform ($value, $specConf, $direction='rte', $thisConfig=array()) | |
| TS_images_db ($value) | |
| TS_images_rte ($value) | |
| TS_reglinks ($value, $direction) | |
| TS_links_db ($value) | |
| TS_links_rte ($value) | |
| TS_preserve_db ($value) | |
| TS_preserve_rte ($value) | |
| TS_transform_db ($value, $css=FALSE) | |
| transformStyledATags ($value) | |
| TS_transform_rte ($value, $css=0) | |
| TS_strip_db ($value) | |
| getURL ($url) | |
| HTMLcleaner_db ($content, $tagList='') | |
| getKeepTags ($direction='rte', $tagList='') | |
| divideIntoLines ($value, $count=5, $returnArray=FALSE) | |
| setDivTags ($value, $dT='p') | |
| internalizeFontTags ($value) | |
| siteUrl () | |
| rteImageStorageDir () | |
| removeTables ($value, $breakChar='< br/>') | |
| defaultTStagMapping ($code, $direction='rte') | |
| getWHFromAttribs ($attribArray) | |
| urlInfoForLinkTags ($url) | |
| TS_AtagToAbs ($value, $dontSetRTEKEEP=FALSE) | |
Attributs publics | |
| $headListTags = 'PRE,UL,OL,H1,H2,H3,H4,H5,H6,HR,ADDRESS,DL' | |
| $recPid = 0 | |
| $elRef = '' | |
| $relPath = '' | |
| $relBackPath = '' | |
| $procOptions = '' | |
| $TS_transform_db_safecounter = 100 | |
| $rte_p = '' | |
| $getKeepTags_cache = array() | |
| $allowedClasses = array() | |
| $preserveTags = '' | |
| t3lib_parsehtml_proc::init | ( | $ | elRef = '', |
|
| $ | recPid = 0 | |||
| ) |
Initialize, setting element reference and record PID
| string | Element reference, eg "tt_content:bodytext" | |
| integer | PID of the record (page id) |
| t3lib_parsehtml_proc::setRelPath | ( | $ | path | ) |
Setting the ->relPath and ->relBackPath to proper values so absolute references to links and images can be converted to relative dittos. This is used when editing files with the RTE
| string | The relative path from PATH_site to the place where the file being edited is. Eg. "fileadmin/static". |
| t3lib_parsehtml_proc::evalWriteFile | ( | $ | pArr, | |
| $ | currentRecord | |||
| ) |
Evaluate the environment for editing a staticFileEdit file. Called for almost all fields being saved in the database. Is called without an instance of the object: t3lib_parsehtml_proc::evalWriteFile()
| array | Parameters for the current field as found in types-config | |
| array | Current record we are editing. |
| t3lib_parsehtml_proc::RTE_transform | ( | $ | value, | |
| $ | specConf, | |||
| $ | direction = 'rte', |
|||
| $ | thisConfig = array() | |||
| ) |
Transform value for RTE based on specConf in the direction specified by $direction (rte/db) This is the main function called from tcemain and transfer data classes
| string | Input value | |
| array | Special configuration for a field; This is coming from the types-configuration of the field in the TCA. In the types-configuration you can setup features for the field rendering and in particular the RTE takes al its major configuration options from there! | |
| string | Direction of the transformation. Two keywords are allowed; "db" or "rte". If "db" it means the transformation will clean up content coming from the Rich Text Editor and goes into the database. The other direction, "rte", is of course when content is coming from database and must be transformed to fit the RTE. | |
| array | Parsed TypoScript content configuring the RTE, probably coming from Page TSconfig. |
| t3lib_parsehtml_proc::TS_images_db | ( | $ | value | ) |
Transformation handler: 'ts_images' / direction: "db" Processing images inserted in the RTE. This is used when content goes from the RTE to the database. Images inserted in the RTE has an absolute URL applied to the src attribute. This URL is converted to a relative URL If it turns out that the URL is from another website than the current the image is read from that external URL and moved to the local server. Also "magic" images are processed here.
| string | The content from RTE going to Database |
| t3lib_parsehtml_proc::TS_images_rte | ( | $ | value | ) |
Transformation handler: 'ts_images' / direction: "rte" Processing images from database content going into the RTE. Processing includes converting the src attribute to an absolute URL.
| string | Content input |
| t3lib_parsehtml_proc::TS_reglinks | ( | $ | value, | |
| $ | direction | |||
| ) |
Transformation handler: 'ts_reglinks' / direction: "db"+"rte" depending on $direction variable. Converting -tags to/from abs/rel
| string | Content input | |
| string | Direction of conversion; "rte" (from database to RTE) or "db" (from RTE to database) |
| t3lib_parsehtml_proc::TS_links_db | ( | $ | value | ) |
Transformation handler: 'ts_links' / direction: "db" Converting -tags to <link tags>="">
| string | Content input |
| t3lib_parsehtml_proc::TS_links_rte | ( | $ | value | ) |
Transformation handler: 'ts_links' / direction: "rte" Converting <link tags>=""> to -tags
| string | Content input |
| t3lib_parsehtml_proc::TS_preserve_db | ( | $ | value | ) |
Preserve special tags
| string | Content input |
| t3lib_parsehtml_proc::TS_preserve_rte | ( | $ | value | ) |
Preserve special tags
| string | Content input |
| t3lib_parsehtml_proc::TS_transform_db | ( | $ | value, | |
| $ | css = FALSE | |||
| ) |
Transformation handler: 'ts_transform' + 'css_transform' / direction: "db" Cleaning (->db) for standard content elements (ts)
| string | Content input | |
| boolean | If true, the transformation was "css_transform", otherwise "ts_transform" |
| t3lib_parsehtml_proc::transformStyledATags | ( | $ | value | ) |
Wraps a-tags that contain a style attribute with a span-tag
| string | Content input |
| t3lib_parsehtml_proc::TS_transform_rte | ( | $ | value, | |
| $ | css = 0 | |||
| ) |
Transformation handler: 'ts_transform' + 'css_transform' / direction: "rte" Set (->rte) for standard content elements (ts)
| string | Content input | |
| boolean | If true, the transformation was "css_transform", otherwise "ts_transform" |
| t3lib_parsehtml_proc::TS_strip_db | ( | $ | value | ) |
Transformation handler: 'ts_strip' / direction: "db" Removing all non-allowed tags
| string | Content input |
| t3lib_parsehtml_proc::getURL | ( | $ | url | ) |
Reads the file or url $url and returns the content
| string | Filepath/URL to read |
| t3lib_parsehtml_proc::HTMLcleaner_db | ( | $ | content, | |
| $ | tagList = '' | |||
| ) |
Function for cleaning content going into the database. Content is cleaned eg. by removing unallowed HTML and ds-HSC content It is basically calling HTMLcleaner from the parent class with some preset configuration specifically set up for cleaning content going from the RTE into the db
| string | Content to clean up | |
| string | Comma list of tags to specifically allow. Default comes from getKeepTags and is "" |
| t3lib_parsehtml_proc::getKeepTags | ( | $ | direction = 'rte', |
|
| $ | tagList = '' | |||
| ) |
Creates an array of configuration for the HTMLcleaner function based on whether content go TO or FROM the Rich Text Editor ($direction) Unless "tagList" is given, the function will cache the configuration for next time processing goes on. (In this class that is the case only if we are processing a bulletlist)
| string | The direction of the content being processed by the output configuration; "db" (content going into the database FROM the rte) or "rte" (content going into the form) | |
| string | Comma list of tags to keep (overriding default which is to keep all + take notice of internal configuration) |
| t3lib_parsehtml_proc::divideIntoLines | ( | $ | value, | |
| $ | count = 5, |
|||
| $ | returnArray = FALSE | |||
| ) |
This resolves the $value into parts based on
-sections and
-sections and
-tags. These are returned as lines separated by chr(10). This point is to resolve the HTML-code returned from RTE into ordinary lines so it's 'human-readable' The function ->setDivTags does the opposite. This function processes content to go into the database.
| string | Value to process. | |
| integer | Recursion brake. Decremented on each recursion down to zero. Default is 5 (which equals the allowed nesting levels of p/div tags). | |
| boolean | If true, an array with the lines is returned, otherwise a string of the processed input value. |
| t3lib_parsehtml_proc::setDivTags | ( | $ | value, | |
| $ | dT = 'p' | |||
| ) |
Converts all lines into
/-sections (unless the line is a div-section already) For processing of content going FROM database TO RTE.
| string | Value to convert | |
| string | Tag to wrap with. Either "p" or "div" should it be. Lowercase preferably. |
| t3lib_parsehtml_proc::internalizeFontTags | ( | $ | value | ) |
This splits the $value in font-tag chunks. If there are any
/
| t3lib_parsehtml_proc::siteUrl | ( | ) |
Returns SiteURL based on thisScript.
| t3lib_parsehtml_proc::rteImageStorageDir | ( | ) |
Return the storage folder of RTE image files. Default is $GLOBALS['TYPO3_CONF_VARS']['BE']['RTE_imageStorageDir'] unless something else is configured in the types configuration for the RTE.
| t3lib_parsehtml_proc::removeTables | ( | $ | value, | |
| $ | breakChar = '<br />' | |||
| ) |
Remove all tables from incoming code The function is trying to to this is some more or less respectfull way. The approach is to resolve each table cells content and implode it all by
chars. Thus at least the content is preserved in some way.
| string | Input value | |
| string | Break character to use for linebreaks. |
| t3lib_parsehtml_proc::defaultTStagMapping | ( | $ | code, | |
| $ | direction = 'rte' | |||
| ) |
Default tag mapping for TS
| string | Input code to process | |
| string | Direction To databsae (db) or from database to RTE (rte) |
| t3lib_parsehtml_proc::getWHFromAttribs | ( | $ | attribArray | ) |
Finds width and height from attrib-array If the width and height is found in the style-attribute, use that!
| array | Array of attributes from tag in which to search. More specifically the content of the key "style" is used to extract "width:xxx / height:xxx" information |
| t3lib_parsehtml_proc::urlInfoForLinkTags | ( | $ | url | ) |
Parse -tag href and return status of email,external,file or page
| string | URL to analyse. |
| t3lib_parsehtml_proc::TS_AtagToAbs | ( | $ | value, | |
| $ | dontSetRTEKEEP = FALSE | |||
| ) |
Converting -tags to absolute URLs (+ setting rtekeep attribute)
| string | Content input | |
| boolean | If true, then the "rtekeep" attribute will not be set. |
| t3lib_parsehtml_proc::$headListTags = 'PRE,UL,OL,H1,H2,H3,H4,H5,H6,HR,ADDRESS,DL' |
| t3lib_parsehtml_proc::$recPid = 0 |
| t3lib_parsehtml_proc::$elRef = '' |
| t3lib_parsehtml_proc::$relPath = '' |
| t3lib_parsehtml_proc::$relBackPath = '' |
| t3lib_parsehtml_proc::$procOptions = '' |
| t3lib_parsehtml_proc::$TS_transform_db_safecounter = 100 |
| t3lib_parsehtml_proc::$rte_p = '' |
| t3lib_parsehtml_proc::$getKeepTags_cache = array() |
| t3lib_parsehtml_proc::$allowedClasses = array() |
| t3lib_parsehtml_proc::$preserveTags = '' |
1.5.3