API15

API15:JModel/getName

From Joomla! Documentation

Revision as of 22:10, 22 March 2010 by Doxiki (talk | contribs)

Description

Method to get the model name

[Edit Descripton]

Template:Description:JModel/getName

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] Template:SeeAlso:JModel/getName

Examples

<CodeExamplesForm />