API16

API16:JView/addHelperPath

From Joomla! Documentation

Description

Adds to the stack of helper script paths in LIFO order.



Syntax

addHelperPath($path)
Parameter Name Default Value Description
$path The directory (-ies) to add.

Returns

void

Defined in

libraries/joomla/application/component/view.php

Importing

jimport( 'joomla.application.component.view' );

Source Body

function addHelperPath($path)
{
        $this->_addPath('helper', $path);
}



Examples

Code Examples