Back to Microdata class

Method getAvailableTypes

public static array
getAvailableTypes
()
Return an array with all available Types from the http://schema.org vocabulary
Returns
  • array
Since
  • 3.2
Class: Microdata
Project: Joomla

Method getAvailableTypes - Source code

/**
 * Return an array with all available Types from the http://schema.org vocabulary
 *
 * @return  array
 *
 * @since   3.2
 */
public static function getAvailableTypes()
{
    static::loadTypes();
    return array_keys(static::$types);
}