BcBaserHelper::getImg PHP Method

getImg() public method

画像タグを取得する
public getImg ( string $path, array $options = [] ) : string
$path string 画像のパス(img フォルダからの相対パス)
$options array オプション(主にHTML属性) ※ パラメータについては、HtmlHelper::image() を参照。
return string 画像タグ
    public function getImg($path, $options = array())
    {
        return $this->BcHtml->image($path, $options);
    }