/**
 * Gets the parameter object for the library
 *
 * @param   string   $element  Element of the library in the extensions table.
 * @param   boolean  $strict   If set and the library does not exist, false will be returned
 *
 * @return  Registry  A Registry object.
 *
 * @see     Registry
 * @since   3.2
 */
public static function getParams($element, $strict = false)
{
    return static::getLibrary($element, $strict)->params;
}