Codes for Updating Joomla! 1.0 Extensions to Joomla! 1.5
There are 141 entries in this glossary.
| Term |
Definition |
|
Table Function -count number of modules-
|
Usage in Joomla! 1.0 <?php if (mosCountModules('left')) : ?>
<?php if (mosCountModules('left') || mosCountModules('right')) : ?>
Usage in Joomla! 1.5 <?php if ($this->countModules('left')) : ?>
<?php if ($this->countModules('left OR right')) : ?>
|
|
Table Function -display component-
|
|
|
Table Function -HEAD include directive-
|
Usage in Joomla! 1.0 <?php mosShowHead();?>
Usage in Joomla! 1.5 <jdoc:include type="head" />
|
|
Table Function -load modules in position
|
Usage in Joomla! 1.0 <?php mosLoadModules('left', 0);?>
<?php mosLoadModules('left', -1);?>
<?php mosLoadModules('left', -2);?>
<?php mosLoadModules('left', -3);?>
Usage in Joomla! 1.5 <jdoc:include type="modules" name="left" style="table" />
<jdoc:include type="modules" name="left" style="raw" />
<jdoc:include type="modules" name="left" style="xhtml" />
<jdoc:include type="modules" name="left" style="rounded" />
|
|
Table Function -load single module-
|
Usage in Joomla! 1.0 <?php mosLoadModule('Banners', -1);?>
<?php mosLoadModule('Latest News', -2);?>
<?php mosLoadModule('Newsflash', -3);?>
Usage in Joomla! 1.5 <jdoc:include type="module" name="Banners" style="raw" />
<jdoc:include type="module" name="Latest News" style="xhtml" />
<jdoc:include type="module" name="Newsflash" style="rounded" />
|
|
Table Function -pathway-
|
Usage in Joomla! 1.0 <?php mosPathWay();?>
Usage in Joomla! 1.5 Include a module position to use the "breadcrumbs" module.
|