Sha256: 7c8be0f2ad62a5990c8d8d1edde72238aa63d9ed04ed50fffba8a83fa989efb3

Contents?: true

Size: 1.7 KB

Versions: 10

Compression:

Stored size: 1.7 KB

Contents

=begin
  Camaleon CMS is a content management system
  Copyright (C) 2015 by Owen Peredo Diaz
  Email: owenperedo@gmail.com
  This program is free software: you can redistribute it and/or modify   it under the terms of the GNU Affero General Public License as  published by the Free Software Foundation, either version 3 of the  License, or (at your option) any later version.
  This program is distributed in the hope that it will be useful,  but WITHOUT ANY WARRANTY; without even the implied warranty of  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  See the  GNU Affero General Public License (GPLv3) for more details.
=end
class Plugin < TermTaxonomy
  # attrs:
  #   term_group => status active (1, nil)
  #   slug => plugin key
  #   name => plugin name
  default_scope { where(taxonomy: :plugin) }
  has_many :metas, ->{ where(object_class: 'Plugin')}, :class_name => "Meta", foreign_key: :objectid, dependent: :destroy
  belongs_to :site, :class_name => "Site", foreign_key: :parent_id
  scope :active, ->{ where(term_group: 1) }
  before_validation :set_default
  attr_accessor :error
  before_destroy :destroy_custom_fields

  # active the plugin
  def active
    self.term_group = 1
    self.save
  end

  # inactive the plugin
  def inactive
    self.term_group = nil
    self.save
  end

  # check if plugin is active
  def active?
    self.term_group.to_s == "1"
  end

  # return theme settings configured in config.json
  def settings
    PluginRoutes.plugin_info(self.slug)
  end

  def title
    PluginRoutes.plugin_info(self.slug)["title"]
  end

  private
  def set_default
    self.name = self.slug unless self.name.present?
  end

  def destroy_custom_fields
    self.get_field_groups().destroy_all
  end

end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
camaleon_cms-0.1.9 app/models/plugin.rb
camaleon_cms-0.1.8 app/models/plugin.rb
camaleon_cms-0.1.7 app/models/plugin.rb
camaleon_cms-0.1.6 app/models/plugin.rb
camaleon_cms-0.1.5 app/models/plugin.rb
camaleon_cms-0.1.4 app/models/plugin.rb
camaleon_cms-0.1.3 app/models/plugin.rb
camaleon_cms-0.1.2 app/models/plugin.rb
camaleon_cms-0.0.2 app/models/plugin.rb
camaleon_cms-0.0.1 app/models/plugin.rb