Joomla-Webmasters.com
Where Professionals Get Their Joom On!
Tuesday, September 07, 2010
Joomla! Resources JCode Conversions

Codes for Updating Joomla! 1.0 Extensions to Joomla! 1.5

There are 141 entries in this glossary.
Search for glossary terms (regular expression allowed)
Page:  1 2 3 4 5... Next »

All

Term Definition
API -direct access check-
Usage in Joomla! 1.0
defined('_VALID_MOS') or die;
Usage in Joomla! 1.5
defined('_JEXEC') or die;
API -translating text-
Usage in Joomla! 1.0
<?php echo _COMMENTS_TITLE;?>
Usage in Joomla! 1.5
<?php echo JText::_('Comments_Title');?>
Array -AdminMenus-
Usage in Joomla! 1.0
mosAdminMenus::ReadImages($imagePath, $folderPath, $folders, $images)
Usage in Joomla! 1.5
No direct replacement.

return by folder/images in folder

Cache API -clean cache for group-
Usage in Joomla! 1.0
mosCache::cleanCache($group)
Usage in Joomla! 1.5
$cache =& JFactory::getCache($group);
$cache->clean($group);
Cache API -get cache for group-
Usage in Joomla! 1.0
$cache = mosCache::getCache($group)
Usage in Joomla! 1.5
return JFactory::getCache($group);
Class -database-
Usage in Joomla! 1.0
database
Usage in Joomla! 1.5
Legacy class. Use JDatabase instead.
Class -MENU_Default-
Usage in Joomla! 1.0
MENU_Default::MENU_Default();
Usage in Joomla! 1.5
JToolBarHelper::publishList();
JToolBarHelper::unpublishList();
JToolBarHelper::addNew();
JToolBarHelper::editList();
JToolBarHelper::deleteList();
JToolBarHelper::spacer();
Class -mosAbstractTasker-

Usage in Joomla! 1.0
class MyClass extends mosAbstractTasker
Usage in Joomla! 1.5
class MyController extends JController

Legacy class. Replaced by full MVC implementation. See JController.

Class -mosAdminMenus-
Usage in Joomla! 1.0
mosAdminMenus
Usage in Joomla! 1.5
Utility class for drawing admin menu HTML elements.
Class -mosCache-
Usage in Joomla! 1.0
mosCache
Usage in Joomla! 1.5
Legacy class. Use &JFactory::getCache(); instead.
Class -mosCategory-
Usage in Joomla! 1.0
mosCategory 
Usage in Joomla! 1.5
Legacy class. Use JTableCategory instead.
Class -mosCommonHTML-
Usage in Joomla! 1.0
mosCommonHTML
Usage in Joomla! 1.5
Legacy class. Use JHTML::_(); instead.
Class -mosComponent-
Usage in Joomla! 1.0
mosComponent 
Usage in Joomla! 1.5
Legacy class. Use JTableComponent instead.
Class -mosContent-
Usage in Joomla! 1.0
mosContent
Usage in Joomla! 1.5
Legacy class. Use JTableContent instead.
Class -mosDBTable-
Usage in Joomla! 1.0
mosDBTable
Usage in Joomla! 1.5
Legacy class. Derive from JTable instead.
Page:  1 2 3 4 5... Next »
All | | A | C | D | F | G | H | M | P | S | T
Glossary 2.64 is technology by Guru PHP