API15:JModuleHelper/getLayoutPath
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Get the path to a layout for a module
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
getLayoutPath($module, $layout= 'default')
| Parameter Name | Default Value | Description |
|---|---|---|
| $module | $module The name of the module | |
| $layout | 'default' | $layout The name of the module layout |
Returns
string The path to the module layout
Defined in
libraries/joomla/application/module/helper.php
Importing
jimport( 'joomla.application.module.helper' );
Source Body
function getLayoutPath($module, $layout = 'default') { global $mainframe; // Build the template and base path for the layout $tPath = JPATH_BASE.DS.'templates'.DS.$mainframe->getTemplate().DS.'html'.DS.$module.DS.$layout.'.php'; $bPath = JPATH_BASE.DS.'modules'.DS.$module.DS.'tmpl'.DS.$layout.'.php'; // If the template has a layout override use it if (file_exists($tPath)) { return $tPath; } else { return $bPath; } }
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
