Noosfero/noosfero

View on GitHub
plugins/gallery_block/lib/gallery_block_plugin.rb

Summary

Maintainability
A
0 mins
Test Coverage
class GalleryBlockPlugin < Noosfero::Plugin
  def self.plugin_name
    "Gallery Block"
  end

  def self.plugin_description
    _("Includes a block to display images from  a gallery.")
  end

  def self.extra_blocks
    {
      GalleryBlock => { type: [Community, Environment] }
    }
  end

  def stylesheet?
    true
  end
end