class Alchemy::Custom::Model::ElFinder::Paths::Root

Public Instance Methods

children(with_directory = true) click to toggle source
# File lib/alchemy/custom/model/el_finder/paths/root.rb, line 14
def children(with_directory = true)
  [
      Images.new(@root, 'images', volume: @volume),
      Files.new(@root, 'files', volume: @volume)
  ]
end
is_root?() click to toggle source
# File lib/alchemy/custom/model/el_finder/paths/root.rb, line 5
def is_root?
  true
end
with_sub_dirs?() click to toggle source
# File lib/alchemy/custom/model/el_finder/paths/root.rb, line 9
def with_sub_dirs?
  true
end