Module: CamaleonCms::MetasDecoratorMethods

Included in:
ApplicationDecorator
Defined in:
app/decorators/camaleon_cms/metas_decorator_methods.rb

Overview

Camaleon CMS is a content management system

Copyright (C) 2015 by Owen Peredo Diaz
Email: [email protected]
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.

Instance Method Summary collapse

Instance Method Details

#the_meta(key) ⇒ Object

return meta value translated for key in this model



11
12
13
# File 'app/decorators/camaleon_cms/metas_decorator_methods.rb', line 11

def the_meta(key)
  object.get_meta(key, "").translate(@_deco_locale)
end

#the_option(key) ⇒ Object

return option value translated for key in this model



16
17
18
# File 'app/decorators/camaleon_cms/metas_decorator_methods.rb', line 16

def the_option(key)
  object.get_option(key, "").translate(@_deco_locale)
end