lithium\template\helper\Html::image()
Creates a formatted <img /> element.
Parameters
-
string
$pathPath to the image file. If the filename is prefixed with
'/', the path will be relative to the base path of your application. Otherwise the path will be relative to the images directory, usuallywebroot/img/. If the name starts with'http://', this is treated as an external url used as thesrcattribute. -
array
$optionsArray of HTML attributes.
Returns
stringReturns a formatted <img /> tag.
Filter
This method can be filtered.
Source
public function image($path, array $options = []) {
$defaults = ['alt' => ''];
$options += $defaults;
$path = is_array($path) ? $this->_context->url($path) : $path;
$params = compact('path', 'options');
$m = __METHOD__;
return Filters::run($this, __FUNCTION__, $params, function($params) use ($m) {
return $this->_render($m, 'image', $params);
});
}