JApplication/getName: Difference between revisions
From Joomla! Documentation
New page: ===Description===
Method to get the application name.
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>Edit Descripton<nowiki>]... |
No edit summary |
||
| Line 1: | Line 1: | ||
===Description=== | ===Description=== | ||
Method to get the application name | Method to get the application name | ||
<span class="editsection" style="font-size:76%;"> | <span class="editsection" style="font-size:76%;"> | ||
| Line 13: | Line 13: | ||
===Returns=== | ===Returns=== | ||
string The name of the dispatcher | string The name of the dispatcher | ||
===Defined in=== | ===Defined in=== | ||
| Line 22: | Line 22: | ||
===Source Body=== | ===Source Body=== | ||
<source lang="php"> | <source lang="php"> | ||
function getName() | |||
{ | { | ||
$name = $this->_name; | $name = $this->_name; | ||
if (empty($name)) | if (empty( $name )) | ||
{ | { | ||
$r = null; | $r = null; | ||
if (!preg_match('/J(.*)/i', get_class($this), $r)) { | if ( !preg_match( '/J(.*)/i', get_class( $this ), $r ) ) { | ||
JError::raiseError(500, "JApplication::getName() : Can\'t get or parse class name."); | JError::raiseError(500, "JApplication::getName() : Can\'t get or parse class name."); | ||
} | } | ||
$name = strtolower($r[1]); | $name = strtolower( $r[1] ); | ||
} | } | ||
Revision as of 22:09, 22 March 2010
Description
Method to get the application name
Template: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] Template:SeeAlso:JApplication/getName
Examples
<CodeExamplesForm />