houdini/lib/image.rb

15 lines
457 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
module Image
def self._url(resource_name, image_name, version = 'normal')
%(
concat(#{Qexpr.quote AssetPath}
, '/', #{Qexpr.quote resource_name}
, '/', #{Qexpr.quote image_name}
, '/', #{resource_name + '.id'}
, '/', #{Qexpr.quote version}, '_', #{resource_name + '.' + image_name})
)
end
end