class Nesta::App

module Plugin
  module Taggr
    module Helpers

If your plugin needs any helper methods, add them here…

    end
  end
end

Public Instance Methods

pages_by_tag(tag) click to toggle source
# File lib/nesta-plugin-taggr/init.rb, line 18
def pages_by_tag(tag)
  Nesta::Page.pages_by_tag(tag)
end
tag_cloud() click to toggle source
# File lib/nesta-plugin-taggr/init.rb, line 14
def tag_cloud
  $tag_cloud ||= Nesta::Page.tag_cloud
end