Back to AssociationExtensionHelper class

Method getTypeTables

public array
getTypeTables
(mixed $typeName)
Get information about the tables the type use
Parameters
  • string $typeName The item type
Returns
  • array Array of support information
Since
  • 3.7.0

Method getTypeTables - Source code

/**
 * Get information about the tables the type use
 *
 * @param   string  $typeName  The item type
 *
 * @return  array  Array of support information
 *
 * @since   3.7.0
 */
public function getTypeTables($typeName)
{
    return $this->getTypeInformation($typeName, 'tables');
}