Class: CamaleonCms::Plugin
- Inherits:
-
TermTaxonomy
- Object
- ActiveRecord::Base
- CamaleonRecord
- TermTaxonomy
- CamaleonCms::Plugin
- Defined in:
- app/models/camaleon_cms/plugin.rb
Constant Summary
Constants inherited from TermTaxonomy
TermTaxonomy::TRANSLATION_TAG_HIDE_MAP, TermTaxonomy::TRANSLATION_TAG_HIDE_REGEX, TermTaxonomy::TRANSLATION_TAG_RESTORE_MAP, TermTaxonomy::TRANSLATION_TAG_RESTORE_REGEX
Instance Attribute Summary collapse
-
#error ⇒ Object
attrs: term_group => status active (1, nil) slug => plugin key name => plugin name.
Instance Method Summary collapse
-
#active ⇒ Object
active the plugin.
-
#active? ⇒ Boolean
check if plugin is active.
-
#inactive ⇒ Object
inactive the plugin.
-
#installed_version ⇒ Object
return gem installed version.
-
#installed_version=(version) ⇒ Object
set a new installation version for this plugin.
-
#old_version? ⇒ Boolean
check if current installation version is older return boolean.
-
#settings ⇒ Object
return theme settings configured in config.json.
-
#title ⇒ Object
return the title of this plugin.
Methods inherited from TermTaxonomy
#children, #in_nav_menu_items, inherited, #skip_slug_validation?
Methods included from CustomFieldsRead
#add_custom_field_group, #add_custom_field_to_default_group, #get_field_groups, #get_field_object, #get_field_value, #get_field_values, #get_field_values_hash, #get_fields_grouped, #get_fields_object, #get_user_field_groups, #save_field_value, #set_field_value, #set_field_values, #update_field_value
Methods included from Metas
#delete_meta, #delete_option, #fix_save_metas_options_no_changed, #get_meta, #get_option, #options, #save_metas_options, #save_metas_options_skip, #set_meta, #set_metas, #set_option, #set_options
Methods inherited from CamaleonRecord
#cama_build_cache_key, #cama_fetch_cache, #cama_get_cache, #cama_remove_cache, #cama_set_cache
Instance Attribute Details
#error ⇒ Object
attrs:
term_group => status active (1, nil)
slug => plugin key
name => plugin name
8 9 10 |
# File 'app/models/camaleon_cms/plugin.rb', line 8 def error @error end |
Instance Method Details
#active ⇒ Object
active the plugin
19 20 21 22 |
# File 'app/models/camaleon_cms/plugin.rb', line 19 def active self.term_group = 1 save end |
#active? ⇒ Boolean
check if plugin is active
31 32 33 |
# File 'app/models/camaleon_cms/plugin.rb', line 31 def active? term_group.to_s == '1' end |
#inactive ⇒ Object
inactive the plugin
25 26 27 28 |
# File 'app/models/camaleon_cms/plugin.rb', line 25 def inactive self.term_group = nil save end |
#installed_version ⇒ Object
return gem installed version
53 54 55 56 57 58 59 60 61 62 |
# File 'app/models/camaleon_cms/plugin.rb', line 53 def installed_version '' # res = get_option('version_installed') # unless res.present? # fix for old installations # res = settings['version'] # self.installed_version = res # end # res end |
#installed_version=(version) ⇒ Object
set a new installation version for this plugin
48 49 50 |
# File 'app/models/camaleon_cms/plugin.rb', line 48 def installed_version=(version) set_option('version_installed', version) end |
#old_version? ⇒ Boolean
check if current installation version is older return boolean
42 43 44 45 |
# File 'app/models/camaleon_cms/plugin.rb', line 42 def old_version? # self.installed_version.to_s != self.settings["version"].to_s false end |
#settings ⇒ Object
return theme settings configured in config.json
36 37 38 |
# File 'app/models/camaleon_cms/plugin.rb', line 36 def settings PluginRoutes.plugin_info(slug) end |
#title ⇒ Object
return the title of this plugin
65 66 67 |
# File 'app/models/camaleon_cms/plugin.rb', line 65 def title PluginRoutes.plugin_info(slug)['title'] end |