API15

API15:JApplication/getPath

From Joomla! Documentation

Revision as of 00:16, 25 March 2017 by JoomlaWikiBot (talk | contribs) (preparing for archive only)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

Deprecated, use JApplicationHelper::getPath instead.


<! removed transcluded page call, red link never existed >

Syntax

getPath($varname, $user_option=null)
Parameter Name Default Value Description
$varname
$user_option null

Defined in

libraries/joomla/application/application.php

Importing

jimport( 'joomla.application.application' );

Source Body

function getPath($varname, $user_option = null)
{
        jimport('joomla.application.helper');
        return JApplicationHelper::getPath ($varname, $user_option);
}


<! removed transcluded page call, red link never existed >

Examples

Code Examples