API15:JController/getName
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
Method to get the controller name
Description:JController/getName
Syntax
getName()
Returns
string The name of the dispatcher
Defined in
libraries/joomla/application/component/controller.php
Importing
jimport( 'joomla.application.component.controller' );
Source Body
function getName() { $name = $this->_name; if (empty( $name )) { $r = null; if ( !preg_match( '/(.*)Controller/i', get_class( $this ), $r ) ) { JError::raiseError(500, "JController::getName() : Cannot get or parse class name."); } $name = strtolower( $r[1] ); } return $name; }
[Edit See Also] SeeAlso:JController/getName
Examples
<CodeExamplesForm />
