TYPO3 6.0 Extension Migration Tips
Jump to navigation
Jump to search
Static calls
Call | Migration tip |
---|---|
tx_em_Tools::getArrayFromLocallang | deprecated since TYPO3 4.5.1, will be removed in TYPO3 4.7 - use pageRenderer->addInlineLanguageLabelFile() instead |
t3lib_BEfunc::searchQuery | deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.6, use $GLOBALS['TYPO3_DB']->searchQuery() directly! |
t3lib_BEfunc::listQuery | deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.6, use $GLOBALS['TYPO3_DB']->listQuery() directly! |
t3lib_BEfunc::mm_query | deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.6, use $GLOBALS['TYPO3_DB']->exec_SELECT_mm_query() instead since that will return the result pointer while this returns the query. Using this function may make your application less fitted for DBAL later. |
t3lib_BEfunc::DBcompileInsert | deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.6, use $GLOBALS['TYPO3_DB']->exec_INSERTquery() directly! |
t3lib_BEfunc::DBcompileUpdate | deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.6, use $GLOBALS['TYPO3_DB']->exec_UPDATEquery() directly! |
t3lib_BEfunc::titleAttrib | deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.6 - The idea made sense with older browsers, but now all browsers should support the title" attribute - so just hardcode the title attribute instead!" |
t3lib_BEfunc::getSetUpdateSignal | deprecated since TYPO3 4.2, this function will be removed in TYPO3 4.6, use the setUpdateSignal function instead, as it allows you to add more parameters |
t3lib_BEfunc::typo3PrintError | deprecated since TYPO3 4.5, will be removed in TYPO3 4.7 - use RuntimeException from now on |
t3lib_BEfunc::getListOfBackendModules | deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.6. |
t3lib_div::GPvar | deprecated since TYPO3 3.6, will be removed in TYPO3 4.6 - Use t3lib_div::_GP instead (ALWAYS delivers a value with un-escaped values!) |
t3lib_div::GParrayMerged | deprecated since TYPO3 3.7, will be removed in TYPO3 4.6 - Use t3lib_div::_GPmerged instead |
t3lib_div::fixed_lgd | deprecated since TYPO3 4.1, will be removed in TYPO3 4.6 - Works ONLY for single-byte charsets! Use t3lib_div::fixed_lgd_cs() instead |
t3lib_div::fixed_lgd_pre | deprecated since TYPO3 4.1, will be removed in TYPO3 4.6 - Use t3lib_div::fixed_lgd_cs() instead (with negative input value for $chars) |
t3lib_div::breakTextForEmail | deprecated since TYPO3 4.1, will be removed in TYPO3 4.6 - Use PHP function wordwrap() |
t3lib_div::rm_endcomma | deprecated since TYPO3 4.5, will be removed in TYPO3 4.7 - Use rtrim() directly |
t3lib_div::danish_strtoupper | deprecated since TYPO3 3.5, will be removed in TYPO3 4.6 - Use t3lib_cs::conv_case() instead or for HTML output, wrap your content in ...)" |
t3lib_div::convUmlauts | deprecated since TYPO3 4.1, will be removed in TYPO3 4.6 - Works only for western europe single-byte charsets! Use t3lib_cs::specCharsToASCII() instead! |
t3lib_div::uniqueArray | deprecated since TYPO3 3.5, will be removed in TYPO3 4.6 - Use the PHP function array_unique instead |
t3lib_div::array2json | deprecated since TYPO3 4.3, will be removed in TYPO3 4.6 - use PHP native function json_encode() instead, will be removed in TYPO3 4.5 |
t3lib_div::implodeParams | deprecated since TYPO3 3.7, will be removed in TYPO3 4.6 - Name was changed into implodeAttributes |
t3lib_div::debug_ordvalue | deprecated since TYPO3 4.5 - Use t3lib_utility_Debug::ordinalValue instead |
t3lib_div::view_array | deprecated since TYPO3 4.5 - Use t3lib_utility_Debug::viewArray instead |
t3lib_div::print_array | deprecated since TYPO3 4.5 - Use t3lib_utility_Debug::printArray instead |
t3lib_div::debug | deprecated since TYPO3 4.5 - Use t3lib_utility_Debug::debug instead |
t3lib_div::debug_trail | deprecated since TYPO3 4.5 - Use t3lib_utility_Debug::debugTrail instead |
t3lib_div::debugRows | deprecated since TYPO3 4.5 - Use t3lib_utility_Debug::debugRows instead |
t3lib_div::makeInstanceClassName | deprecated since TYPO3 4.3, will be removed in TYPO3 4.6 - Use t3lib_div::makeInstance('myClass', $arg1, $arg2, ..., $argN) |
t3lib_BEfunc::compilePreviewKeyword | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8, functionality is now in Tx_Version_Preview |
t3lib_div::breakLinesForEmail | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 - Use t3lib_utility_Mail::breakLinesForEmail() |
t3lib_div::intInRange | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 - Use t3lib_utility_Math::forceIntegerInRange() instead |
t3lib_div::intval_positive | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 - Use t3lib_utility_Math::convertToPositiveInteger() instead |
t3lib_div::int_from_ver | deprecated since TYPO3 4.6, will be removed in TYPO3 4.9 - Use t3lib_utility_VersionNumber::convertVersionNumberToInteger() instead |
t3lib_div::testInt | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 - Use t3lib_utility_Math::canBeInterpretedAsInteger() instead |
t3lib_div::calcPriority | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 - Use t3lib_utility_Math::calculateWithPriorityToAdditionAndSubtraction() instead |
t3lib_div::calcParenthesis | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 - Use t3lib_utility_Math::calculateWithParentheses() instead |
t3lib_div::cHashParams | deprecated since TYPO3 4.7 - will be removed in TYPO3 4.9 - use t3lib_cacheHash instead |
t3lib_div::generateCHash | deprecated since TYPO3 4.7 - will be removed in TYPO3 4.9 - use t3lib_cacheHash instead |
t3lib_div::calculateCHash | deprecated since TYPO3 4.7 - will be removed in TYPO3 4.9 - use t3lib_cacheHash instead |
t3lib_div::readLLPHPfile | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 - use t3lib_l10n_parser_Llphp::getParsedData() from now on |
t3lib_div::readLLXMLfile | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 - use t3lib_l10n_parser_Llxml::getParsedData() from now on |
t3lib_cache::initPageCache | deprecated since TYPO3 4.6, will be removed in 4.8 - cacheManager->getCache() now initializes caches automatically |
t3lib_cache::initPageSectionCache | deprecated since TYPO3 4.6, will be removed in 4.8 - cacheManager->getCache() now initializes caches automatically |
t3lib_cache::initContentHashCache | deprecated since TYPO3 4.6, will be removed in 4.8 - cacheManager->getCache() now initializes caches automatically |
t3lib_cache::enableCachingFramework | deprecated since 4.6, will be removed in 4.8: The caching framework is enabled by default |
Non static calls
Call | Migration tip |
---|---|
tslib_content_PhpScript::__call | deprecated since 4.5, will be removed in 4.7. Use $this->cObj-><method>() instead |
t3lib_matchCondition::__construct | deprecated since TYPO3 4.3, will be removed in TYPO3 4.6 - The functionality was moved to t3lib_matchCondition_frontend |
tslib_content_PhpScript::__get | deprecated since 4.5, will be removed in 4.7. Use $this->cObj-><property> instead. |
Tx_Extbase_Validation_Validator_GenericObjectValidator::addErrorsForProperty | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0 |
tx_coreupdates_installnewsysexts::addExtToList | deprecated since TYPO3 4.5, will be removed in TYPO3 4.7 - Should not be needed anymore. Extensions should be installed directly by calling Tx_Install_Updates_Base::installExtensions() |
tx_coreupdates_installsysexts::addExtToList | deprecated since TYPO3 4.5, will be removed in TYPO3 4.7 - Should not be needed anymore. Extensions should be installed directly by calling Tx_Install_Updates_Base::installExtensions() |
tslib_fe::ADMCMD_preview | deprecated since TYPO3 4.6, should be removed in TYPO3 4.8, this is now in Tx_Version |
tslib_fe::ADMCMD_preview_postInit | deprecated since TYPO3 4.6, should be removed in TYPO3 4.8, this is now in Tx_Version |
t3lib_install::assembleFieldDefinition | deprecated Since TYPO3 4.6, will be removed in 4.8, use method from t3lib_install_Sql instead |
t3lib_matchCondition::browserInfo_version | deprecated since TYPO3 4.3, will be removed in TYPO3 4.6 - use t3lib_utility_Client::getVersion() instead |
Tx_Extbase_Utility_Extension::buildAutoloadRegistryForSinglePath | deprecated since Extbase 1.4.0; will be removed in Extbase 6.0 |
tx_rtehtmlarea_base::buildStyleSheet | deprecated since TYPO3 4.8, will be removed in TYPO3 4.10 |
tslib_cObj::bytes | deprecated since TYPO3 3.6, will be removed in TYPO3 4.6 - Use t3lib_div::formatSize() instead |
tslib_fe::cHashParams | deprecated since TYPO3 4.7 - will be removed in TYPO3 4.9 - use t3lib_cacheHash instead |
tslib_cObj::checkEmail | deprecated since TYPO3 3.6, will be removed in TYPO3 4.6 - Use t3lib_div::validEmail() instead |
t3lib_TStemplate::checkFile | deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.6. |
Tx_Extbase_MVC_Controller_ActionController::checkRequestHash | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0 |
template::clearCacheMenu | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 |
wslib::CLI_main | deprecated since TYPO3 4.5, will be removed in TYPO3 4.7 - This was meant for an obsolete CLI script. You shouldn't be calling this. |
tslib_fe::connectToMySQL | deprecated since TYPO3 3.8, this function will be removed in TYPO3 4.6, use connectToDB() instead! |
Tx_Extbase_Utility_Extension::convertCamelCaseToLowerCaseUnderscored | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0 |
Tx_Extbase_Utility_Extension::convertCamelCaseToLowerCaseUnderscored | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0 |
Tx_Extbase_Configuration_FrontendConfigurationManager::convertFlexformContentToArray | deprecated since Extbase 1.4; will be removed in Extbase 6.0 |
Tx_Extbase_Utility_Extension::convertLowerUnderscoreToUpperCamelCase | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0 |
Tx_Extbase_Utility_Extension::convertLowerUnderscoreToUpperCamelCase | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0 |
t3lib_timeTrack::convertMicrotime | deprecated since TYPO3 4.3, this function will be removed in TYPO3 4.6, use getMilliseconds() instead that expects microtime as float instead of a string |
t3lib_htmlmail::convertName | deprecated since TYPO3 4.0, will be removed in TYPO3 4.6 |
Tx_Extbase_Utility_TypoScript::convertPlainArrayToTypoScriptArray | deprecated since Extbase 1.4.0; will be removed in Extbase 6.0 - Use Tx_Extbase_Service_TypoScriptService instead |
t3lib_l10n_Locales::convertToTerLocales | deprecated since TYPO3 4.6 |
Tx_Extbase_Utility_TypoScript::convertTypoScriptArrayToPlainArray | deprecated since Extbase 1.4.0; will be removed in Extbase 6.0 - Use Tx_Extbase_Service_TypoScriptService instead |
Tx_Extbase_Utility_Extension::convertUnderscoredToLowerCamelCase | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0 |
Tx_Extbase_Utility_Extension::convertUnderscoredToLowerCamelCase | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0 |
Tx_Extbase_Persistence_Query::count | deprecated since Extbase 1.3.0; was removed in FLOW3; will be removed in Extbase 1.5.0; use Query::execute()::count() instead |
Tx_Extbase_Persistence_Query::count | deprecated since Extbase 1.3.0; was removed in FLOW3; will be removed in Extbase 1.4.0; use Query::execute()::count() instead |
Tx_Extbase_Utility_Extension::createAutoloadRegistryForExtension | deprecated since Extbase 1.4.0; will be removed in Extbase 6.0 |
clickMenu::DB_editPageHeader | deprecated since TYPO3 4.0, will be removed in TYPO3 4.6 - Use DB_editPageProperties instead |
t3lib_timeTrack::debug_typo3PrintError | deprecated since TYPO3 4.5, will be removed in TYPO3 4.7 - use RuntimeException from now on |
adoSchema::Destroy | deprecated adoSchema now cleans up automatically. |
adoSchema::Destroy | deprecated adoSchema now cleans up automatically. |
adoSchema::Destroy | deprecated adoSchema now cleans up automatically. |
adoSchema::Destroy | deprecated adoSchema now cleans up automatically. |
Tx_Extbase_Utility_Extension::extractClassNames | deprecated since Extbase 1.4.0; will be removed in Extbase 6.0 |
tx_indexedsearch_indexer::fe_headerNoCache | deprecated since TYPO3 4.3, this function will be removed in TYPO3 4.6, the method was extracted to hooks/class.tx_indexedsearch_tslib_fe_hook.php |
filelistFolderTree::filelistFolderTree | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
tslib_fe::fileNameASCIIPrefix | deprecated since TYPO3, 4.3, will be removed in TYPO3 4.6, please use the simulatestatic" sysext directly" |
Tx_Extbase_Utility_Extension::findToken | deprecated since Extbase 1.4.0; will be removed in Extbase 6.0 |
t3lib_cache_frontend_AbstractFrontend::flushByTags | deprecated since 4.6, will be removed in 4.8 |
t3lib_basicFileFunctions::formatSize | deprecated since at least TYPO3 4.2, will be removed in TYPO3 4.6 - Use t3lib_div::formatSize() instead |
gzip_encode::freebsd_loadavg | deprecated since TYPO3 4.3, this function will be removed in TYPO3 4.6, we're using the ob_gzhandler" for compression now." |
Tx_Extbase_Utility_Extension::generateAutoloadPhpFileData | deprecated since Extbase 1.4.0; will be removed in Extbase 6.0 |
gzip_encode::get_complevel | deprecated since TYPO3 4.3, this function will be removed in TYPO3 4.6, we're using the ob_gzhandler" for compression now." |
Tx_Extbase_Reflection_ObjectAccess::getAccessibleProperties | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0. Please use getGettableProperties() instead |
Tx_Extbase_Reflection_ObjectAccess::getAccessibleProperties | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0. Please use getGettableProperties() instead |
Tx_Extbase_Reflection_ObjectAccess::getAccessiblePropertyNames | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0. Please use getGettablePropertyNames() instead |
Tx_Extbase_Reflection_ObjectAccess::getAccessiblePropertyNames | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0. Please use getGettablePropertyNames() instead |
Tx_Extbase_MVC_Controller_FlashMessages::getAll | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0. Use Use getAllMessages() instead |
Tx_Extbase_MVC_Controller_FlashMessages::getAll | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0. Use Use getAllMessages() instead |
Tx_Extbase_MVC_Controller_FlashMessages::getAllAndFlush | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0. Use getAllMessagesAndFlush() instead |
Tx_Extbase_MVC_Controller_FlashMessages::getAllAndFlush | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0. Use getAllMessagesAndFlush() instead |
Tx_Extbase_MVC_Controller_ControllerContext::getArgumentsMappingResults | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0 |
Tx_Extbase_Persistence_Manager::getBackend | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0 |
t3lib_cache_frontend_AbstractFrontend::getClassTag | deprecated since TYPO3 4.6 - Use t3lib_cache_Manager::getClassTag() instead |
t3lib_install::getCollationForCharset | deprecated Since TYPO3 4.6, will be removed in 4.8, use method from t3lib_install_Sql instead |
Tx_Extbase_Dispatcher::getConfigurationManager | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0 |
Tx_Extbase_Dispatcher::getConfigurationManager | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0 |
Tx_Extbase_MVC_Web_Request::getContentObjectData | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0. Use the ConfigurationManager to retrieve the current ContentObject |
Tx_Extbase_MVC_Web_Request::getContentObjectData | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0. Use the ConfigurationManager to retrieve the current ContentObject |
SC_mod_web_ts_index::getCountCacheTables | deprecated since TYPO3 4.2.0, will be removed in TYPO3 4.6 |
t3lib_install::getCreateTables | deprecated Since TYPO3 4.6, will be removed in 4.8, use method from t3lib_install_Sql instead |
Tx_About_Controller_AboutController::getCustomContent | deprecated Since 4.7; will be removed together with the call in indexAction and the fluid partial in 4.9 |
t3lib_install::getDatabaseExtra | deprecated Since TYPO3 4.6, will be removed in 4.8, use method from t3lib_install_Sql instead |
template::getDynTabMenuJScode | deprecated since TYPO3 4.5, as the getDynTabMenu() function includes the function automatically since TYPO3 4.3 |
Tx_Extbase_MVC_Request::getErrors | deprecated since Extbase 1.4.0, will be removed with Extbase 6.0 |
Tx_Extbase_Validation_Validator_AbstractCompositeValidator::getErrors | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0 |
Tx_Extbase_Validation_Validator_AbstractValidator::getErrors | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0. use validate() instead. |
Tx_Extbase_Validation_Validator_RawValidator::getErrors | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0 |
Tx_Fluid_ViewHelpers_Form_AbstractFormFieldViewHelper::getErrorsForProperty | deprecated since Extbase 1.4.0, will be removed in Extbase 1.6.0. |
Tx_Extbase_Dispatcher::getExtbaseFrameworkConfiguration | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0 |
Tx_Extbase_Dispatcher::getExtbaseFrameworkConfiguration | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0 |
tslib_AdminPanel::getExtPublishList | deprecated since 4.6, will be removed in 4.8 |
t3lib_install::getFieldDefinitions_database | deprecated Since TYPO3 4.6, will be removed in 4.8, use method from t3lib_install_Sql instead |
t3lib_install::getFieldDefinitions_fileContent | deprecated Since TYPO3 4.6, will be removed in 4.8, use method from t3lib_install_Sql instead |
t3lib_install::getFieldDefinitions_sqlContent | deprecated since TYPO3 4.2, this function will be removed in TYPO3 4.6, use ->getFieldDefinitions_fileContent() instead! |
t3lib_install::getFieldDefinitions_sqlContent_parseTypes | deprecated Since TYPO3 4.6, will be removed in 4.8 |
Tx_Extbase_MVC_Controller_ControllerContext::getFlashMessages | deprecated since Extbase 1.1; will be removed in Extbase 6.0 |
Tx_Extbase_MVC_Controller_ControllerContext::getFlashMessages | deprecated |
SC_index::getHiddenFields | deprecated since TYPO3 4.3, will be removed in TYPO3 4.6 - all the functionality was put in $this->startForm() and $this->addFields_hidden |
SC_mod_user_setup_index::getInstallToolFileExists | deprecated since TYPO3 4.6 - will be removed with TYPO3 4.8 - use Tx_Install_Service_BasicService |
SC_mod_user_setup_index::getInstallToolFileKeep | deprecated since TYPO3 4.6 - will be removed with TYPO3 4.8 - use Tx_Install_Service_BasicService |
t3lib_TCEforms_inline::getJSON | deprecated Since TYPO3 4.2: Moved to t3lib_div::array2json, will be removed in TYPO3 4.6 |
t3lib_install::getListOfTables | deprecated Since TYPO3 4.6, will be removed in 4.8, use method from t3lib_install_Sql instead |
Tx_Workspaces_Service_Befunc::getLivePageUid | deprecated since TYPO3 4.6 - use Tx_Workspaces_Service_Workspaces::getLivePageUid() instead |
t3lib_l10n_Locales::getLocales | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 |
t3lib_TCEforms_inline::getNewRecordLink | deprecated since TYPO3 4.2.0-beta1, this function will be removed in TYPO3 4.6. |
tx_scheduler_CronCmd::getNextValue | deprecated since 4.5 |
Tx_Extbase_Object_Manager::getObject | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0. Please use Tx_Extbase_Object_ObjectManager instead |
Tx_Extbase_Object_Manager::getObject | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0. Please use Tx_Extbase_Object_ObjectManager instead |
Tx_Extbase_MVC_Controller_Argument::getOrigin | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0 |
Tx_Extbase_Dispatcher::getPersistenceManager | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0 |
Tx_Extbase_Dispatcher::getPersistenceManager | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0 |
Tx_Extbase_Utility_Extension::getPluginNameByAction | deprecated since Extbase 1.4.0; will be removed in Extbase 6.0 - Use Tx_Extbase_Service_ExtensionService instead |
Tx_Extbase_Utility_Extension::getPluginNamespace | deprecated since Extbase 1.4.0; will be removed in Extbase 6.0 - Use Tx_Extbase_Service_ExtensionService instead |
Tx_Fluid_Core_ViewHelper_AbstractViewHelper::getRenderingContext | deprecated since Extbase 1.4.0, will be removed in Extbase 1.6.0. use $this->renderingContext instead |
Tx_Extbase_Persistence_Manager::getSession | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0 |
tslib_fe::getSimulFileName | deprecated since TYPO3 4.3, will be removed in TYPO3 4.6, please use the simulatestatic" sysext directly" |
t3lib_install::getStatementArray | deprecated Since TYPO3 4.6, will be removed in 4.8, use method from t3lib_install_Sql instead |
tx_cms_layout::getTable_fe_users | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 |
tx_cms_layout::getTable_sys_note | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 |
tx_cms_layout::getTable_tt_address | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 |
tx_cms_layout::getTable_tt_board | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 |
tx_cms_layout::getTable_tt_calender | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 |
tx_cms_layout::getTable_tt_guest | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 |
tx_cms_layout::getTable_tt_links | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 |
tx_cms_layout::getTable_tt_news | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 |
tx_cms_layout::getTable_tt_products | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 |
t3lib_install::getTableInsertStatements | deprecated Since TYPO3 4.6, will be removed in 4.8, use method from t3lib_install_Sql instead |
Tx_Extbase_Utility_Extension::getTargetPidByPlugin | deprecated since Extbase 1.4.0; will be removed in Extbase 6.0 - Use Tx_Extbase_Service_ExtensionService instead |
t3lib_l10n_Locales::getTerLocaleDependencies | deprecated since TYPO3 4.6 |
t3lib_l10n_Locales::getTerLocales | deprecated since TYPO3 4.6 |
tx_scheduler_CronCmd::getTstamp | deprecated since 4.5 |
t3lib_install::getUpdateSuggestions | deprecated Since TYPO3 4.6, will be removed in 4.8, use method from t3lib_install_Sql instead |
Tx_Extbase_Domain_Model_FrontendUser::getUsergroups | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0 - use Tx_Extbase_Domain_Model_FrontendUser::getUsergroup() instead |
Tx_Extbase_Domain_Model_FrontendUser::getUsergroups | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0 - use Tx_Extbase_Domain_Model_FrontendUser::getUsergroup() instead |
gzip_encode::gzip_accepted | deprecated since TYPO3 4.3, this function will be removed in TYPO3 4.6, we're using the ob_gzhandler" for compression now." |
gzip_encode::gzip_encode | deprecated since TYPO3 4.3, this function will be removed in TYPO3 4.6, we're using the ob_gzhandler" for compression now." |
tx_em_Extensions_Details::helpCol | deprecated since TYPO3 4.5, will be removed in TYPO3 4.7 |
template::helpStyle | deprecated since TYPO3 4.5, will be removed in TYPO3 4.7 |
t3lib_TCEforms::helpText | deprecated since TYPO3 4.5, will be removed in TYPO3 4.7 |
t3lib_TCEforms::helpText_typeFlex | deprecated since TYPO3 4.5, this function will be removed in TYPO3 4.7. Use t3lib_BEfunc::wrapInHelp() instead. |
t3lib_TCEforms::helpTextIcon | deprecated since TYPO3 4.5, will be removed in TYPO3 4.7 |
t3lib_TCEforms::helpTextIcon_typeFlex | deprecated since TYPO3 4.5, this function will be removed in TYPO3 4.7. Use t3lib_BEfunc::wrapInHelp() instead. |
language::hscAndCharConv | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 - Use htmlspecialchars() instead. |
tslib_fe::idPartsAnalyze | deprecated since TYPO3 4.3, will be removed in TYPO3 4.5, please use the simulatestatic" sysext directly" |
tslib_fe::idPartsAnalyze | deprecated since TYPO3 4.3, will be removed in TYPO3 4.5, please use the simulatestatic" sysext directly" |
t3lib_stdGraphic::imagecreate | deprecated since TYPO3 4.4, this function will be removed in TYPO3 4.6. |
t3lib_stdGraphic::imageCreateFromGif | deprecated since TYPO3 4.0, this function will be removed in TYPO3 4.6. |
t3lib_stdGraphic::imageGif | deprecated since TYPO3 4.0, this function will be removed in TYPO3 4.6. |
tslib_menu::includeMakeMenu | deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.6, use HMENU of type userfunction" instead of "userdefined"" |
tx_cms_layout::infoGif | deprecated since TYPO3 4.4, this function will be removed in TYPO3 4.6 |
t3lib_TCEforms_inline::initForAJAX | deprecated since TYPO3 4.2.0-alpha3, this function will be removed in TYPO3 4.6. |
Tx_Extbase_MVC_Controller_AbstractController::injectDeprecatedPropertyMapper | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0 |
t3lib_userAuthGroup::inList | deprecated since TYPO3 4.7, should be removed in TYPO3 4.9, use equivalent function t3lib_div::inList() |
Tx_Extbase_Utility_Extension::isActionCacheable | deprecated since Extbase 1.4.0; will be removed in Extbase 6.0 - Use Tx_Extbase_Service_ExtensionService instead |
Tx_Extbase_MVC_Web_Request::isHmacVerified | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0 |
Tx_Extbase_Validation_Validator_GenericObjectValidator::isPropertyValid | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0 |
Tx_Extbase_Validation_Validator_ConjunctionValidator::isValid | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0 |
Tx_Extbase_Validation_Validator_DisjunctionValidator::isValid | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0 |
Tx_Extbase_Validation_Validator_GenericObjectValidator::isValid | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0 |
Tx_Extbase_Validation_Validator_RawValidator::isValid | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0 |
Tx_Extbase_MVC_Controller_Argument::isValue | deprecated since Extbase 1.4.0, will be removed with Extbase 6.0 |
gzip_encode::linux_loadavg | deprecated since TYPO3 4.3, this function will be removed in TYPO3 4.6, we're using the ob_gzhandler" for compression now." |
Tx_Extbase_Utility_ClassLoader::loadClass | deprecated since Extbase 1.4.0; will be removed in Extbase 6.0. TYPO3 core autoloader handles extbase files as well |
localFolderTree::localFolderTree | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
localFolderTree::localFolderTree | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
localPageTree::localPageTree | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
localPageTree::localPageTree | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
localPageTree::localPageTree | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
tslib_fe::make_seed | deprecated since TYPO3 4.3, this function will be removed in TYPO3 4.6, the random number generator is seeded automatically since PHP 4.2.0 |
tx_indexedsearch_indexer::makeCHash | deprecated since TYPO3 4.3, this function will be removed in TYPO3 4.6, use directly t3lib_div::calculateCHash() |
SC_index::makeLoginNews | deprecated $GLOBALS['TYPO3_CONF_VARS']['BE']['loginNews'] is deprecated since 4.5. Use system news records instead. |
tx_simulatestatic::makeSimulatedFileNameCompat | deprecated since TYPO3 4.3, will be deleted in TYPO3 4.6 |
tslib_fe::makeSimulFileName | deprecated since TYPO3 4.3, will be removed in TYPO3 4.6, please use the simulatestatic" sysext directly" |
tx_indexedsearch::md5inthash | deprecated will be removed in 4.8 |
tx_indexedsearch_indexer::md5inthash | deprecated will be removed in 4.8. |
SC_index::mergeOldLoginLabels | deprecated since TYPO3 4.6, remove in TYPO3 4.8 |
template::middle | deprecated since TYPO3 3.6, will be removed in TYPO3 4.6 |
t3lib_timeTrack::mtime | deprecated since TYPO3 4.3, this function will be removed in TYPO3 4.6, use getDifferenceToStarttime() instead |
Tx_Extbase_Utility_TypeHandling::normalizeType | deprecated since Extbase 1.4.0; will be removed in Extbase 6.0 - Use Tx_Extbase_Service_TypoScriptService instead |
t3lib_TCEforms::noTitle | deprecated since TYPO3 4.1, this function will be removed in TYPO3 4.6. |
tslib_fe::pageCachePostProcess | deprecated since 4.6, will be removed in 4.8 |
adoSchema::ParseSchemaFile | deprecated Replaced by adoSchema::ParseSchema() and adoSchema::ParseSchemaString() |
adoSchema::ParseSchemaFile | deprecated Replaced by adoSchema::ParseSchema() and adoSchema::ParseSchemaString() |
adoSchema::ParseSchemaFile | deprecated Replaced by adoSchema::ParseSchema() and adoSchema::ParseSchemaString() |
adoSchema::ParseSchemaFile | deprecated Replaced by adoSchema::ParseSchema() and adoSchema::ParseSchemaString() |
Tx_Extbase_Utility_TypeHandling::parseType | deprecated since Extbase 1.4.0; will be removed in Extbase 6.0 - Use Tx_Extbase_Service_TypoScriptService instead |
t3lib_install::performUpdateQueries | deprecated Since TYPO3 4.6, will be removed in 4.8, use method from t3lib_install_Sql instead |
tslib_pibase::pi_list_query | deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.5, use pi_exec_query() instead! |
tslib_pibase::pi_setClassStyle | deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.6, I think this function should not be used (and probably isn't used anywhere). It was a part of a concept which was left behind quite quickly. |
SC_view_help::printItemFlex | deprecated since TYPO3 4.5, this function will be removed in TYPO3 4.7. Use printItem() instead. |
formRender::printPalette | deprecated since TYPO3 4.3, will be removed in TYPO3 4.6 |
t3lib_TStemplate::procesIncludes | deprecated since TYPO3 4.4 - Method name misspelled. Use processIncludes" instead! This function will be removed in TYPO3 4.6." |
tx_sv_auth::processOriginalPasswordValue | deprecated will be removed with 4.9 |
tx_indexedsearch_indexer::procesWordsInArrays | deprecated since TYPO3 4.0, this function will be removed in TYPO3 4.6. |
t3lib_htmlmail::quoted_printable | deprecated since TYPO3 4.0, will be removed in TYPO3 4.6 |
tslib_search::quotemeta | deprecated This function is deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Please, use preg_quote() instead. |
ux_t3lib_DB::quoteSelectFields | deprecated since TYPO3 4.0, will be removed in TYPO3 4.6 |
t3lib_userAuth::redirect | deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.6. |
t3lib_stdGraphic::reduceColors | deprecated since TYPO3 4.4, this function will be removed in TYPO3 4.6. |
RemoveXSS::RemoveXSS | deprecated since TYPO3 4.3, will be removed in TYPO3 4.6 - use static call RemoveXSS::process() instead |
tslib_content_PhpScript::render | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 |
tslib_content_PhpScriptExternal::render | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 |
tslib_content_PhpScriptInternal::render | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 |
SC_view_help::render_SingleFlex | deprecated since TYPO3 4.5, this function will be removed in TYPO3 4.7. Use render_Single() instead. |
SC_mod_user_setup_index::renderInstallToolEnableFileButton | deprecated since TYPO3 4.6 - will be removed with TYPO3 4.8 |
Tx_Extbase_MVC_Controller_ControllerContext::setArgumentsMappingResults | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0 |
t3lib_cache_backend_DbBackend::setCacheTable | deprecated since TYPO3 4.6: The backend calculates the table name internally, this method does nothing anymore |
Tx_Extbase_MVC_Request::setErrors | deprecated since Extbase 1.4.0, will be removed with Extbase 6.0 |
t3lib_spritemanager_SpriteGenerator::setGenerateGifCopy | deprecated IE6 support will be dropped within 4.6 - then gifcopies are superflous |
Tx_Extbase_MVC_Web_Request::setHmacVerified | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0 |
SC_mod_user_setup_index::setInstallToolFileExists | deprecated since TYPO3 4.6 - will be removed with TYPO3 4.8 - use Tx_Install_Service_BasicService |
SC_mod_user_setup_index::setInstallToolFileKeep | deprecated since TYPO3 4.6 - will be removed with TYPO3 4.8 - use Tx_Install_Service_BasicService |
Tx_Extbase_MVC_Controller_Argument::setNewValidatorConjunction | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0 |
Tx_Extbase_Validation_Validator_AbstractCompositeValidator::setOptions | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0 |
Tx_Extbase_Validation_Validator_AbstractValidator::setOptions | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0. use constructor instead. |
Tx_Extbase_Validation_Validator_RawValidator::setOptions | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0 |
tslib_fe::setSimulReplacementChar | deprecated since TYPO3 4.3, will be removed in TYPO3 4.6, please use the simulatestatic" sysext directly" |
t3lib_cache_backend_DbBackend::setTagsTable | deprecated since TYPO3 4.6: The backend calculates the table name internally, this method does nothing anymore |
tslib_fe::simulateStaticDocuments_pEnc_onlyP_proc | deprecated since TYPO3 4.3, will be removed in TYPO3 4.6, please use the simulatestatic" sysext directly" |
t3lib_DB::sql | deprecated since TYPO3 3.6, will be removed in TYPO3 4.6 |
ux_t3lib_DB::sql | deprecated since TYPO3 4.1, will be removed in TYPO3 4.6 |
tslib_content_Abstract::stdWrap | deprecated since TYPO3 4.5, this function will be removed in TYPO3 4.7, use $this->cObj->stdWrap() instead. |
tx_cms_layout::strip_tags | deprecated since TYPO3 4.6, will be removed in 4.8 - using php-function strip_tags now |
t3lib_cli::t3lib_cli | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
t3lib_folderTree::t3lib_folderTree | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
t3lib_install::t3lib_install | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
t3lib_TCEforms::t3lib_TCEforms | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
t3lib_xml::t3lib_xml | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
TBE_browser_recordList::TBE_browser_recordList | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
template::template | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
tx_em_Connection_ExtDirectSoap::testUserLogin | deprecated since 4.6, will be removed in 4.8 |
template::thisBlur | deprecated since TYPO3 4.5, will be removed in TYPO3 4.7 |
t3lib_beUserAuth::trackBeUser | deprecated since TYPO3 3.6, this function will be removed in TYPO3 4.6. |
Tx_Extbase_MVC_Controller_Argument::transformValue | deprecated since Extbase 1.4, will be removed in Extbase 6.0 |
tslib_fe::tslib_fe | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
tslib_pibase::tslib_pibase | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
tx_cms_layout::tt_board_drawItem | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 |
tx_cms_layout::tt_board_getTree | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 |
tx_indexedsearch_lexer::tx_indexedsearch_lexer | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
tx_install::tx_install | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
tx_lowlevel_admin_core::tx_lowlevel_admin_core | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
tx_lowlevel_cleaner_core::tx_lowlevel_cleaner_core | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
tx_lowlevel_cleanflexform::tx_lowlevel_cleanflexform | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
tx_lowlevel_deleted::tx_lowlevel_deleted | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
tx_lowlevel_double_files::tx_lowlevel_double_files | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
tx_lowlevel_lost_files::tx_lowlevel_lost_files | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
tx_lowlevel_missing_files::tx_lowlevel_missing_files | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
tx_lowlevel_missing_relations::tx_lowlevel_missing_relations | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
tx_lowlevel_orphan_records::tx_lowlevel_orphan_records | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
tx_lowlevel_rte_images::tx_lowlevel_rte_images | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
tx_lowlevel_syslog::tx_lowlevel_syslog | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
tx_lowlevel_versions::tx_lowlevel_versions | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
tx_indexedsearch_modfunc1::utf8_to_currentCharset | deprecated since 4.7, will be removed in 4.9 |
Tx_Extbase_Configuration_FrontendConfigurationManager::walkFlexformNode | deprecated since Extbase 1.4; will be removed in Extbase 6.0 |
webPageTree::webPageTree | deprecated since TYPO3 4.6 and will be removed in TYPO3 4.8. Use __construct() instead. |
tslib_cObj::whereSelectFromList | deprecated since TYPO3 3.6, will be removed in TYPO3 4.6 - Use $GLOBALS['TYPO3_DB']->listQuery() directly! |
Tx_Extbase_Persistence_Query::withUid | deprecated since Extbase 1.2.0; was removed in FLOW3; will be removed in Extbase 1.3.0; use equals() instead |
tslib_fe::workspacePreviewInit | deprecated since TYPO3 4.7, will be removed in TYPO3 4.9 as this is part of Tx_Version now |
t3lib_userAuthGroup::workspaceVersioningTypeAccess | deprecated since TYPO3 4.4, will be removed in TYPO3 4.8 as only element versioning is supported now |
t3lib_userAuthGroup::workspaceVersioningTypeGetClosest | deprecated since TYPO3 4.4, will be removed in TYPO3 4.8 as only element versioning is supported now |
tx_coreupdates_installnewsysexts::writeNewExtensionList | deprecated since TYPO3 4.5, will be removed in TYPO3 4.7 - Use Tx_Install_Updates_Base::installExtensions() instead |
tx_coreupdates_installsysexts::writeNewExtensionList | deprecated since TYPO3 4.5, will be removed in TYPO3 4.7 - Use Tx_Install_Updates_Base::installExtensions() instead |
formRender | deprecated since TYPO3 4.3, will be removed in TYPO3 4.6 |
tslib_content_Html | deprecated since TYPO3 4.6, will be removed in TYPO3 4.8 - use TEXT from now on |
tx_aboutmodules_Functions | deprecated since 4.7, will be removed in 4.9 |
Tx_Extbase_BaseTestCase | deprecated since Extbase 1.3; will be removed in Extbase 1.5 |
Tx_Extbase_BaseTestCase | deprecated use Tx_Extbase_Tests_Unit_BaseTestCase instead |
Tx_Extbase_Dispatcher | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0 |
Tx_Extbase_Dispatcher | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0 |
Tx_Extbase_MVC_Controller_ArgumentError | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0 |
Tx_Extbase_MVC_Controller_ArgumentsValidator | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0. Is only needed for old property mapper. |
Tx_Extbase_Object_Manager | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0 |
Tx_Extbase_Object_Manager | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0 |
Tx_Extbase_Persistence_QOM_QueryObjectModelConstantsInterface | deprecated since Extbase 1.1; use Tx_Extbase_Persistence_QueryInterface::* instead |
Tx_Extbase_Persistence_QOM_QueryObjectModelConstantsInterface | deprecated since Extbase 1.1; use Tx_Extbase_Persistence_QueryInterface::* instead |
Tx_Extbase_Property_Mapper | deprecated since Extbase 1.4.0 |
Tx_Extbase_Property_MappingResults | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0 |
Tx_Extbase_Utility_Cache | deprecated since Extbase 1.4.0; will be removed in Extbase 6.0. Please use Tx_Extbase_Service_CacheService instead |
Tx_Extbase_Utility_TypeHandling | deprecated since Extbase 1.4.0; will be removed in Extbase 6.0. Please use Tx_Extbase_Service_TypeHandlingService instead |
Tx_Extbase_Utility_TypoScript | deprecated since Extbase 1.4.0; will be removed in Extbase 6.0. Please use Tx_Extbase_Service_TypoScriptService instead |
Tx_Extbase_Validation_PropertyError | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0 |
Tx_Extbase_Validation_Validator_AbstractObjectValidator | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0 |
Tx_Extbase_Validation_Validator_ObjectValidatorInterface | deprecated since Extbase 1.4.0, will be removed in Extbase 6.0 |
Tx_Fluid_Core_ViewHelper_TagBasedViewHelper | deprecated. Extend Tx_Fluid_Core_ViewHelper_AbstractTagBasedViewHelper instead! |
Tx_Fluid_Core_ViewHelper_TagBasedViewHelper | deprecated. Extend Tx_Fluid_Core_ViewHelper_AbstractTagBasedViewHelper instead! |
Tx_Fluid_ViewHelpers_EscapeViewHelper | deprecated since Extbase 1.4.0; will be removed in Extbase 1.6.0. Please use the <f:format.*> ViewHelpers instead. |
Tx_Fluid_ViewHelpers_Form_ErrorsViewHelper | deprecated since Extbase 1.4.0, will be removed with Extbase 1.6.0. |
Tx_Fluid_ViewHelpers_Form_TextboxViewHelper | deprecated since Extbase 1.4.0; will be removed in Extbase 1.6.0. Please use the <f:form.textfield> ViewHelper instead. |
Tx_Fluid_ViewHelpers_Form_TextboxViewHelper | deprecated since 1.0.0 alpha 7 |
Tx_Fluid_ViewHelpers_RenderFlashMessagesViewHelper | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0 |
Tx_Fluid_ViewHelpers_RenderFlashMessagesViewHelper | deprecated since Extbase 1.3.0; will be removed in Extbase 1.5.0 |