This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<image> | |
<TCEforms> | |
<label>Image</label> | |
<displayCond>FIELD:style:=:1</displayCond> | |
<config> | |
<type>input</type> | |
<renderType>inputLink</renderType> | |
<fieldControl> | |
<linkPopup> | |
<options> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UPDATE tt_content | |
INNER JOIN tx_news_domain_model_news_ttcontent_mm ON (tt_content.uid = tx_news_domain_model_news_ttcontent_mm.uid_foreign) | |
SET tt_content.tx_news_related_news = tx_news_domain_model_news_ttcontent_mm.uid_local, | |
tt_content.sorting = tx_news_domain_model_news_ttcontent_mm.sorting |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Generate slugs for a table | |
* | |
* Author: Jacco van der Post <[email protected]> | |
* | |
* @param string $table - The table to create the slugs in | |
* @param string $slugFieldName - The slug or path segment fieldname | |
* @param string $title - The field where the slug will be based on | |
* @param bool $forceOverwrite - Forces rewrite of all slug values | |
* |