API16

API16:JTable/getTableName

From Joomla! Documentation

Description

Method to get the database table name for the class.



Syntax

getTableName()


Returns

string The name of the database table being modeled.

Defined in

libraries/joomla/database/table.php

Importing

jimport( 'joomla.database.table' );

Source Body

public function getTableName()
{
        return $this->_tbl;
}



Examples

Code Examples