API17

JHtml::tooltip

From Joomla! Documentation

The "API17" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Joomla 11.1 JHtml::tooltip[edit]

Description[edit]

Creates a tooltip with an image as button.


public static function tooltip (
        $tooltip
        $title= ''
        $image= 'tooltip.png'
        $text= ''
        $href= ''
        $alt= 'Tooltip'
        $class='hasTip'
)
Parameter Type Default Description
$tooltip string The tip string
$title array The title of the tooltip or an associative array with keys contained in {'title','image','text','href','alt'} and values corresponding to parameters of the same name.
$image string 'tooltip.png' The image for the tip, if no text is provided
$text string The text for the tip
$href string An URL that will be used to create the link
$alt string 'Tooltip' The alt attribute for img tag
$class 'hasTip'
  • Returns string
  • Defined on line 633 of libraries/joomla/html/html.php
  • Since Joomla 11.1

See also[edit]


User contributed notes[edit]

Code Examples[edit]