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