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