Back to Table class

Method _getAssetTitle

protected string
_getAssetTitle
()
Method to return the title to use for the asset table.
Returns
  • string The string to use as the title in the asset table.
Since
  • 1.7.0
Class: Table
Project: Joomla

Method _getAssetTitle - Source code

/**
 * Method to return the title to use for the asset table.
 *
 * In tracking the assets a title is kept for each asset so that there is some context available in a unified access manager.
 * Usually this would just return $this->title or $this->name or whatever is being used for the primary name of the row.
 * If this method is not overridden, the asset name is used.
 *
 * @return  string  The string to use as the title in the asset table.
 *
 * @since   1.7.0
 */
protected function _getAssetTitle()
{
    return $this->_getAssetName();
}