API15

JModuleHelper/getLayoutPath: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
No edit summary
m preparing for archive only
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:


<span class="editsection" style="font-size:76%;">
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JModuleHelper/getLayoutPath|Edit Descripton]]<nowiki>]</nowiki>
<nowiki>[<! removed edit link to red link >]</nowiki>
</span>
</span>


{{Description:JModuleHelper/getLayoutPath}}
<! removed transcluded page call, red link never existed >


===Syntax===
===Syntax===
Line 54: Line 54:


<span class="editsection" style="font-size:76%;">
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JModuleHelper/getLayoutPath|Edit See Also]]<nowiki>]</nowiki>
<nowiki>[<! removed edit link to red link >]</nowiki>
</span>
</span>
{{SeeAlso:JModuleHelper/getLayoutPath}}
<! removed transcluded page call, red link never existed >


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=getLayoutPath
  category=getLayoutPath
  category=JModuleHelper
  category=JModuleHelper
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*
  format= ,,,
  format= ,,,
</dpl>
</dpl>
[[Category:Archived pages API15]]

Latest revision as of 00:58, 25 March 2017

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

Code Examples