Extends
lithium\core\StaticObject
Gets just the class name portion of a fully-name-spaced class name, i.e.
`app\models\Posts::_name()` returns `'Posts'`.
Returns
stringSource
protected static function _name() {
return basename(str_replace('\\', '/', get_called_class()));
}