API16

JView/setLayoutExt

From Joomla! Documentation

< API16:JView

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Allows a different extension for the layout files to be used



Syntax[edit]

setLayoutExt($value)
Parameter Name Default Value Description
$value The extension

Returns[edit]

string Previous value

Defined in[edit]

libraries/joomla/application/component/view.php

Importing[edit]

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

Source Body[edit]

function setLayoutExt($value)
{
        $previous       = $this->_layoutExt;
        if ($value = preg_replace('#[^A-Za-z0-9]#', '', trim($value))) {
                $this->_layoutExt = $value;
        }
        return $previous;
}



Examples[edit]

Code Examples[edit]