getImage() public static method

Get the imagepath or the html "img" tag
public static getImage ( string $image, string $alt = "", string $style = "", string $title = "", string $atts = "" ) : string
$image string The name of the image.
$alt string "alt" attribute of the image
$style string "style" attribute of the image
$title string "title" attribute of the image
$atts string Custom attributes of the image
return string The path of the image if the first argument is given, but others not. Otherwise the html "img" tag
Example #1
0
/**
 * Get the imagepath or the html "img" tag
 *
 * @param string $image The name of the image.
 * @param string $alt "alt" attribute of the image
 * @param string $style "style" attribute of the image
 * @param string $title "title" attribute of the image
 * @param string $atts Custom attributes of the image
 * @return string The path of the image if the first argument is given,
 * but others not. Otherwise the html "img" tag
 */
function get_image($image, $alt = "", $style = "", $title = "", $atts = "")
{
    return ImageRepo::getImage($image, $alt, $style, $title, $atts);
}