Method: PageModule#plugin

Defined in:
app/models/page_module.rb

#pluginObject



36
37
38
39
40
41
42
43
44
# File 'app/models/page_module.rb', line 36

def plugin
  return @plugin if @plugin.present?
  
  if slug_stub.present? && Setting['home_page.general.plugins'].include?("home_page_#{slug_stub}") || slug_stub == 'home'
    slug_stub      
  else
    nil
  end
end