Potential backward compatibility issues in Joomla 3 and Joomla Platform 12.2

From Joomla! Documentation

Revision as of 12:05, 28 May 2013 by Wilsonge (talk | contribs) (added Category:Migration using HotCat)
Quill icon.png
Content is Incomplete

This article or section is incomplete, which means it may be lacking information. You are welcome to assist in its completion by editing it as well. If this article or section has not been edited in several days, please consider helping complete the content.
This article was last edited by Wilsonge (talk| contribs) 10 years ago. (Purge)

This document tracks potential backward compatibility issues for Joomla 3 and Joomla Platform 12.2, which is included in Joomla 3. Listed are issues which potentially break extensions.

Please help make this document complete.

The base of this comparison is Joomla 2.5/Platform 11.4.

Backwards compatibility issues were also tracked for Joomla 2.5: Potential backward compatibility issues in Joomla 2.5 and Joomla Platform 11.4

Platform[edit]

The platform removed a larger number of deprecated classes and methods. For most extensions written for Joomla 2.5, the required changes should be reasonably small. Note that there are still deprecated classes in the platform that will be removed in future versions -- developers should stop using them where possible.

Updated System Requirements[edit]

The system requirements have changed in the following points:

  • PHP 5.3.1
  • register_globals must be off
  • magic_quotes_gpc must be off

General changes[edit]

  • Almost all functions, methods, members and classes marked as deprecated in Platform 11.4 have been removed. They won't be listed in this document.
  • Appending ?no_html to an URL to get a RAW view is not supported anymore (this was an old Joomla 1.0 feature).
  • The DS constant has been removed. If you really need it you can use DIRECTORY_SEPARATOR instead.
  • Many more function arguments have been type hinted, including existing classes. Make sure you're always passing values of the correct type.
  • The name of modules now have to start with "mod_".
  • Extensions need to set the registeredurlparams now, the fall back on the URL has been removed.
  • Some cookies are only accessible through HTTP (not via JavaScript). For example; the session cookie.
  • Due to upcoming changes to the MVC implementation in the platform, JModel, JView, and JController are re-used as the names of the new interfaces. For now, use JModelLegacy, JViewLegacy and JControllerLegacy instead.
  • JFolder and JFile now require you to do your own jimport statement (You always had to do that, just before it was rather likely something else had loaded them before)
  • Joomla! 3.0 usually throws exceptions instead of returning JError or JException. Please see Exceptions and Logging in Joomla 1.7 and Joomla Platform 11.1 for more information.

Changes to extension installation[edit]

  • Use of the <install> base tag (from 1.5) is no longer supported; use <extension> instead.
  • Suppport for install_script and uninstall_script, and the methods com_install and com_uninstall in these scripts, has been removed; use scriptfile instead.
  • In language extensions, support for client="both" has been removed; prepare each client as a separate extension and optionally bundle them as a package extension instead.
  • File paths for plugins no longer support the old 1.5 method (i.e. plugins/system/cache.php); each plugin must now be in its own folder (i.e. plugins/system/cache/cache.php).

Changes to Components[edit]

  • In admin components the admin.*.php and toolbar.*.php are not automatically included anymore (this was a Joomla 1.0 legacy feature).

Moved files[edit]

All classes listed here should now be autoloadable. Explicit requires and includes have to be modified or removed.

Plugin Events[edit]

  • onContentBeforeSave event now receives $article by value not by reference. Sample definition: public function onContentBeforeSave($context, $article, $isNew).
  • onContentAfterSave event now receives $article by value not by reference. Sample definition: public function onContentAfterSave($context, $article, $isNew).

Renamed classes[edit]

  • JFTP is now called JClientFtp
  • JLDAP is now called JClientLdap
  • JWebClient is now called JApplicationWebClient

Removed classes[edit]

  • JParameter (use JForm instead or, in most circumstances, JRegistry - for example to retrieve in a component a plugin parameter)
  • JElement and its subclasses
  • JFormFieldEditors (use JFormFieldPlugins instead)
  • JHtmlImage
  • JRules (use JAccessRules instead)
  • JSimpleXML
  • JPane

Changes to classes[edit]

Base classes[edit]

JFactory[edit]

  • JFactory::getXMLParser() has been removed. For RSS and Atom use cases, use JFactory::getFeedParser() instead. To read XML files or strings use JFactory::getXML().
  • JFactory::_createConfig() has been removed. Use JFactory::createConfig() instead.
  • JFactory::_createSession() has been removed. Use JFactory::createSession() instead.
  • JFactory::_createDbo() has been removed. Use JFactory::createDbo() instead.
  • JFactory::_createMailer() has been removed. Use JFactory::createMailer() instead.
  • JFactory::_createDocument() has been removed. Use JFactory::createDocument() instead.

Application[edit]

JApplicationHelper[edit]

  • JApplicationHelper::getPath() has been removed. No replacement.
  • JApplicationHelper::_checkPath() has been removed. No replacement.

Component[edit]

JComponentHelper[edit]

  • The behavior of JComponentHelper::isEnabled() has been changed to match developer expectations.

MVC[edit]

JController[edit]

  • JController::$_acoSection has been removed.
  • JController::$_acoSectionValue has been removed.
  • JController::authorize() has been removed. Use JController::authorise() instead.
  • JController::setAccessControl() has been removed. Use JAccess.
  • JController::getInstance() has been removed. Use JControllerLegacy::getInstance() instead.

JControllerLegacy[edit]

  • JControllerLegacy::display() needs an extra parameter: ($cachable = false, $urlparams = false).

JModelAdmin[edit]

  • JModelAdmin::generateNewTitle() is backwards incompatible with Joomla! 2.5 (first parameter has been removed).
  • JModelAdmin::prepareTable(): first parameter isn't reference anymore.

Archive[edit]

Adapters[edit]

  • JArchiveBzip2 does not extend JObject anymore. You must not use any of JObject's methods.
  • JArchiveGzip does not extend JObject anymore. You must not use any of JObject's methods.
  • JArchiveTar does not extend JObject anymore. You must not use any of JObject's methods.
  • JArchiveZip does not extend JObject anymore. You must not use any of JObject's methods.

Base[edit]

JObject[edit]

  • JObject::toString() has been removed. Use JObject::__toString() instead.

Client[edit]

JClientLdap (formerly JLDAP)[edit]

  • JClientLdap does not extend JObject anymore. You must not use any of JObject's methods.

Database[edit]

JDatabase had been renamed JDatabaseDriver. JDatabase is still around (but deprecated) and is the base of JDatabaseDriver, this way type hints and instance of checks keep working.

Due to lazy-connecting, a connection is only opened when running a query or explicitly calling JDatabaseDriver::connected(). Beware of that when checking JDatabaseDriver::connected().

JDatabase[edit]

  • JDatabase::$hasQuoted has been removed.
  • JDatabase::$quoted has been removed.
  • JDatabase::addQuoted() has been removed.
  • JDatabase::hasUTF() has been removed.
  • JDatabase::debug() has been removed. Use JDatabase::setDebug() instead.
  • JDatabase::explain() has been removed.
  • JDatabase::getEscaped() has been removed. Use JDatabase::escape() instead.
  • JDatabase::getTableFields() has been removed. Use JDatabase::getTableColumns() instead.
  • JDatabase::getTicker() has been removed. Use JDatabase::count() instead.
  • JDatabase::isQuoted() has been removed.
  • JDatabase::loadResultArray() has been removed. Use JDatabase::loadColumn() instead.
  • JDatabase::nameQuote() has been removed. Use JDatabase::quoteName() instead.
  • JDatabase::queryBatch() has been removed.
  • JDatabase::query() has been deprecated. JDatabase::execute() should be used alternatively

Database schema changes[edit]

Columns dropped

  • `#__content`.`title_alias`;
  • `#__contact_details`.`imagepos`;
  • `#__content`.`title_alias`;
  • `#__content`.`sectionid`;
  • `#__content`.`mask`;
  • `#__content`.`parentid`;
  • `#__newsfeeds`.`filename`;
  • `#__weblinks`.`sid`;
  • `#__weblinks`.`date`;
  • `#__weblinks`.`archived`;
  • `#__weblinks`.`approved`;
  • `#__menu`.`ordering`;
  • `#__session`.`usertype`;
  • `#__users`.`usertype`;
  • `#__updates`.`categoryid`;

Discover more by reading

  • administrator\components\com_admin\sql\updates\mysql\3.0.0.sql
  • administrator\components\com_admin\sql\updates\mysql\3.0.1.sql
  • administrator\components\com_admin\sql\updates\mysql\3.0.x.sql

File[edit]

JFile[edit]

  • JFile::read() has been deprecated. Use file_get_contents() instead.

Document[edit]

JDocument[edit]

  • JDocument::setMetaData() the $sync argument has been removed. It was broken beyond repair.

JDocumentRenderer[edit]

  • JDocumentRenderer does not extend JObject anymore. You must not use any of JObject's methods.

JDocumentFeed[edit]

  • JFeedItem does not extend JObject anymore. You must not use any of JObject's methods.
  • JFeedEnclosure does not extend JObject anymore. You must not use any of JObject's methods.
  • JFeedImage does not extend JObject anymore. You must not use any of JObject's methods.

JDocumentOpenSearch[edit]

  • JOpenSearchUrl does not extend JObject anymore. You must not use any of JObject's methods.
  • JOpenSearchImage does not extend JObject anymore. You must not use any of JObject's methods.

JDocumentXml[edit]

  • JDocumentXml::$_name has been renamed to JDocumentXml::$name.

Environment[edit]

JBrowser[edit]

  • JBrowser does not extend JObject anymore. You must not use any of JObject's methods.
  • JBrowser::setQuirk() has been removed.
  • JBrowser::hasQuirk() has been removed.
  • JBrowser::getQuirk() has been removed.
  • JBrowser::setFeature() has been removed.
  • JBrowser::hasFeature() has been removed.
  • JBrowser::getFeature() has been removed.
  • JBrowser::$_majorVersion has been renamed to JBrowser::$majorVersion.
  • JBrowser::$_minorVersion has been renamed to JBrowser::$minorVersion.
  • JBrowser::$_browser has been renamed to JBrowser::$browser.
  • JBrowser::$_agent has been renamed to JBrowser::$agent.
  • JBrowser::$_lowerAgent has been renamed to JBrowser::$lowerAgent.
  • JBrowser::$_accept has been renamed to JBrowser::$accept.
  • JBrowser::$_accept_parsed has been renamed to JBrowser::$acceptParsed.
  • JBrowser::$_platform has been renamed to JBrowser::$platform.
  • JBrowser::$_robots has been renamed to JBrowser::$robots.
  • JBrowser::$_mobile has been renamed to JBrowser::$mobile.
  • JBrowser::$_images has been renamed to JBrowser::$images.

JRequest[edit]

  • JRequest::clean() has been removed.
  • JRequest::_cleanVar() is now protected.
  • JRequest::getCmd() is deprecated. Use JFactory::getApplication()->input->get() instead.
  • JRequest::getVar() is deprecated. Use JFactory::getApplication()->input->get() instead.
  • JRequest::checkToken() is deprecated. Use JSession::checkToken() instead. If you are using JRequest::checkToken('default'), use JSession::checkToken('request')instead.

JUri[edit]

  • JURI has been renamed to JUri. Autoloader is still able to regognise the old capitalized name.
  • JUri does not extend JObject anymore. You must not use any of JObject's methods.
  • JUri::$_uri has been renamed to JUri::$uri.
  • JUri::$_scheme has been renamed to JUri::$scheme.
  • JUri::$_host has been renamed to JUri::$host.
  • JUri::$_port has been renamed to JUri::$port.
  • JUri::$_user has been renamed to JUri::$user.
  • JUri::$_pass has been renamed to JUri::$pass.
  • JUri::$_path has been renamed to JUri::$path.
  • JUri::$_query has been renamed to JUri::$query.
  • JUri::$_fragment has been renamed to JUri::$fragment.
  • JUri::$_vars has been renamed to JUri::$vars.

Error[edit]

JError[edit]

  • JError has been deprecated. Use Exceptions instead.
  • WARNING: Many functions that were previously returning JError or false are now throwing exceptions.

Please see Exceptions and Logging in Joomla 1.7 and Joomla Platform 11.1 for more information.

JProfiler[edit]

  • JProfiler does not extend JObject anymore. You must not use any of JObject's methods.
  • JProfiler::$_start has been renamed to JProfiler::$start.
  • JProfiler::$_prefix has been renamed to JProfiler::$prefix.
  • JProfiler::$_buffer has been renamed to JProfiler::$buffer.
  • JProfiler::$_previous_time has been renamed to JProfiler::$previousTime.
  • JProfiler::$_previous_mem has been renamed to JProfiler::$previousMem.
  • JProfiler::$_iswin has been renamed to JProfiler::$isWin.

Filesystem[edit]

JStream[edit]

  • JStream::$_fh has been renamed to JStream::$fh.
  • JStream::$_filesize has been renamed to JStream::$filesize.
  • JStream::$_context has been renamed to JStream::$context.
  • JStream::$_contextOptions has been renamed to JStream::$contextOptions.
  • JStream::$_openmode has been renamed to JStream::$openmode.

JStreamString[edit]

  • JStream::$_currentstring has been renamed to JStream::$currentString.
  • JStream::$_path has been renamed to JStream::$path.
  • JStream::$_mode has been renamed to JStream::$mode.
  • JStream::$_options has been renamed to JStream::$options.
  • JStream::$_opened_path has been renamed to JStream::$openedPath.
  • JStream::$_pos has been renamed to JStream::$pos.
  • JStream::$_len has been renamed to JStream::$len.
  • JStream::$_stat has been renamed to JStream::$stat.

Filter[edit]

JFilterInput[edit]

  • JFilterInput does not extend JObject anymore. You must not use any of JObject's methods.

HTML[edit]

JHtml[edit]

  • JHTML has been renamed to JHtml. Autoloader is still able to regognise the old capitalized name.
  • JHtml::_includeRelativeFiles() has been removed. Use JHtml::includeRelativeFiles() instead.
  • JHtml::core() has been removed. Use JHtmlBehavior::framework() instead.
  • JHtml::script() doesn't support a string as the second parameter anymore. This used to be the path to the file in Joomla 1.5 and has been removed now.
  • JHtml::stylesheet() doesn't support a string as the second parameter anymore. This used to be the path to the file in Joomla 1.5 and has been removed now.

JHtmlAccess[edit]

  • JHtmlAccess::assetgroups() the argument $config has been removed. It was previously unused.

JHtmlBehavior[edit]

  • JHtmlBehavior::mootools() has been removed. Use JHtmlBehavior::framework() instead.
  • JHtmlBehavior::noframes() the argument $location has been removed. It was previously unused.

JHtmlList[edit]

  • JHtmlList::ordering() the argument $chop has been removed. It was previously unused.
  • JHtmlList::users(), the argument $reg has been removed.

JHtmlSelect[edit]

  • JHtmlSelect::$_optionDefaults has been renamed to JHtmlSelect::$optionDefaults.

JToolBar[edit]

  • JToolBar does not extend JObject anymore. You must not use any of JObject's methods.
  • JToolBar no longer supports the 'X' functions (eg, addNewX, editListX) that hide the main menu before doing the function.

JButton[edit]

  • JButton does not extend JObject anymore. You must not use any of JObject's methods.

JPagination[edit]

  • JPagination::$_viewall has been renamed to JPagination::$viewall.
  • JPagination::$_additionalUrlParams has been renamed to JPagination::$additionalUrlParams.

Installer[edit]

JInstaller[edit]

  • JInstaller::getOverwrite() has been removed. Use JInstaller::isOverwrite() instead.
  • JInstaller::getUpgrade() has been removed. Use JInstaller::isUpgrade() instead.
  • JInstaller::$_paths has been renamed to JInstaller::$paths.
  • JInstaller::$_upgrade has been renamed to JInstaller::$upgrade.
  • JInstaller::$_overwrite has been renamed to JInstaller::$overwrite.
  • JInstaller::$_stepStack has been renamed to JInstaller::$stepStack.

JInstallerLanguage[edit]

  • JInstallerLanguage::$_core as been renamed to JInstallerLanguage::$core.

Language[edit]

JLanguage[edit]

  • JLanguage::getPluralSufficesCallback() has been removed. Use JLanguage::getPluralSuffixesCallback() instead.
  • JLanguage::_parseLanguageFiles() has been removed. Use JLanguage::parseLanguageFiles() instead.
  • JLanguage::_parseXMLLanguageFiles() has been removed. Use JLanguage::parseXMLLanguageFiles() instead.
  • JLanguage::_parseXMLLanguageFile() has been removed. Use JLanguage::parseXMLLanguageFile() instead.
  • JLanguage::loadLanguage() the argument $overwrite has been removed. It was previously unused.

Registry[edit]

JRegistry[edit]

  • JRegistry::loadXML() has been removed. Use JRegistry::loadString() instead.
  • JRegistry::loadINI() has been removed. Use JRegistry::loadString() instead.
  • JRegistry::loadJSON() has been removed. Use JRegistry::loadString() instead.
  • JRegistry::makeNameSpace() has been removed. No replacement.
  • JRegistry::getNameSpaces() has been removed. No replacement.
  • JRegistry::getValue() has been removed. Use JRegistry::get() instead.
  • JRegistry::setValue() has been removed. Use JRegistry::set() instead.
  • JRegistry::loadSetupFile() has been removed. No replacement.

JRegistryFormatINI[edit]

  • JRegistryFormatINI::stringToObject() the second argument ($option) may not be a boolean anymore.

JRegistryFormatJSON[edit]

  • JRegistryFormatJSON::stringToObject() the second argument ($option) may not be a boolean anymore.

Session[edit]

JSessionStorageDatabase[edit]

  • JSessionStorageDatabase::$_data has been renamed to JSessionStorageDatabase::$data.

Table[edit]

JTable[edit]

  • JTable::getInstance() parameters are now case sensitive, e.g. 'MenuType'.
  • JTable::canDelete() has been removed.
  • JTable::toXML() has been removed.

JTableNested[edit]

  • JTableNested::setLocation() raises exception and returns nothing (returned true/false before).

Updater[edit]

JUpdate[edit]

  • JUpdate::$_xml_parser has been renamed to JUpdate::$xmlParser.
  • JUpdate::$_stack has been renamed to JUpdate::$stack.
  • JUpdate::$_state_store has been renamed to JUpdate::$stateStore.
  • JUpdate::$_current_update has been renamed to JUpdate::$currentUpdate.

JUpdater[edit]

  • JUpdater::arrayUnique() has been removed. Use JArrayHelper::arrayUnique() instead.

User[edit]

JAuthentication[edit]

  • The constant JAUTHENTICATE_STATUS_SUCCESS has been removed. Use JAuthentication::STATUS_SUCCESS instead.
  • The constant JAUTHENTICATE_STATUS_CANCEL has been removed. No replacement.
  • The constant JAUTHENTICATE_STATUS_FAILURE has been removed. Use JAuthentication::STATUS_FAILURE instead.
  • JAuthentication::$_observers has been renamed to JAuthentication::$observers.
  • JAuthentication::$_state has been renamed to JAuthentication::$state.
  • JAuthentication::$_methods has been renamed to JAuthentication::$methods.

JUser[edit]

  • JUser::getParameters() has been removed.
  • Juser::authorisedLevels() has been removed. Use JUser::getAuthorisedViewLevels() instead.
  • Juser::authorize() has been removed. Use JUser::authorise() instead.
  • JUser::$usertype has been removed.

Utility[edit]

JBuffer[edit]

  • JBuffer::$_buffers has been renamed to JBuffer::$buffers.

JDate[edit]

  • JDate::toMysql() has been removed. Use JDate::toSql() instead.
  • JDate::toFormat() has been removed. Use JDate::format() instead.
  • JDate::setOffset() has been removed. Use JDate::setTimezone() instead
  • JDate::$offsets has been removed.
  • JDate::__construct() doesn't accept an numeric value for $tz anymore.
  • JDate::$_tz has been renamed to JDate::$tz.

JUtility[edit]

  • JUtility::sendMail() has been removed. Use JMail::sendMail() instead.
  • JUtility::sendAdminMail() has been removed. Use JMail::sendAdminMail() instead.
  • JUtility::getHash() has been removed. Use JApplication::getHash() instead.
  • JUtility::getToken() has been removed. Use JSession::getFormToken() instead.
  • JUtility::isWinOS() has been removed. Use JApplication::isWinOS() instead.
  • JUtility::dump() has been removed. No replacement.
  • JUtility::array_unshift_ref() has been removed. No replacement.
  • JUtility::array_unshift_ref() has been removed. No replacement.

JXMLElement[edit]

  • JXMLElement::data() has been removed.
  • JXMLElement::getAttribute() has been removed. Use SimpleXMLElement::attributes() instead.

JLog[edit]

  • JLog::getInstance has been removed. It must be replaced with JLogLogger (JLogLoggerFormattedtext), methods signatures have also changed.

JavaScript[edit]

  • Compatibility with MooTools 1.2 has been removed.
  • Forms that have name="adminForm" now also require id="adminForm".
  • checkAll() has been removed. Use Joomla.checkAll() instead.
  • isChecked() has been removed. Use Joomla.isChecked() instead.
  • popupWindow() has been removed. Use Joomla.popupWindow() instead.
  • tableOrdering() has been removed. Use Joomla.tableOrdering() instead.

CMS[edit]

General changes[edit]

  • JUtility is not always loaded. If you need it you have to add jimport('joomla.utilities.utility'); to your code.

Changes to classes[edit]

Component Classes[edit]

  • MenusModelItem::getItem() no longer returns a JObject but a stdClass.

Smart Search Classes[edit]

  • To improve multi-database support in the Smart Search indexer, FinderIndexer is now an abstract class and is extended by classes supporting each database named FinderIndexerDriver<DB> (i.e. FinderIndexerDriverMysql). The index, remove, and optimize public methods (as well as additional protected methods) are no longer static. Users requiring a FinderIndexer instance should call FinderIndexer::getInstance() (this is done in the constructor for FinderIndexerAdapter, which all Smart Search plugins should be extending). Users are required to change calls to FinderIndexer::index($item) to $this->indexer->index($item) in their Smart Search plugins.

Help[edit]

JHelp[edit]

  • JHelp::createSiteList() the argument $selected has been removed. It was unused.