Back to AssociationExtensionHelper class

Method getTypeJoins

public array
getTypeJoins
(mixed $typeName)
Get information about the table joins for the type
Parameters
  • string $typeName The item type
Returns
  • array Array of support information
Since
  • 3.7.0

Method getTypeJoins - Source code

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