class Alchemy::Custom::Model::ElFinder::Paths::Images
Public Instance Methods
build_file_path(p)
click to toggle source
Costruisce il singolo file, passandogli l'active record di alchemy (Picture o Attachment)
@param [Alchemy::Picture | Alchemy::Attachment] p
# File lib/alchemy/custom/model/el_finder/paths/images.rb, line 16 def build_file_path(p) base_class = Paths::Image Rails.logger.debug {"#{@root}-#{self.path}"} image = base_class.new(@root, "#{self.path}/#{base_class.file_to_uri(p)}") image.active_record_instance = p image end
children(with_directory = true)
click to toggle source
# File lib/alchemy/custom/model/el_finder/paths/images.rb, line 6 def children(with_directory = true) ::Alchemy::Picture.all.collect {|p| build_file_path(p) } end