2011-10-30 23:02:41 +00:00
|
|
|
module Locomotive::BaseHelper
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2010-06-03 15:32:40 +00:00
|
|
|
def title(title = nil)
|
|
|
|
if title.nil?
|
|
|
|
@content_for_title
|
|
|
|
else
|
|
|
|
@content_for_title = title
|
|
|
|
''
|
|
|
|
end
|
2010-06-12 01:13:58 +00:00
|
|
|
end
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2011-11-16 12:42:42 +00:00
|
|
|
def inputs_folded?(resource)
|
2011-11-25 12:38:31 +00:00
|
|
|
resource.persisted? && resource.errors.empty?
|
2011-11-16 12:42:42 +00:00
|
|
|
end
|
|
|
|
|
2011-11-25 12:38:31 +00:00
|
|
|
def submenu_entry(name, url, options = {}, &block)
|
2010-05-24 00:18:23 +00:00
|
|
|
default_options = { :i18n => true, :css => name.dasherize.downcase }
|
2010-05-02 23:33:17 +00:00
|
|
|
default_options.merge!(options)
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2011-03-03 22:51:07 +00:00
|
|
|
css = "#{'on' if name == sections(:sub)} #{options[:css]}"
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2011-10-30 23:02:41 +00:00
|
|
|
label_link = default_options[:i18n] ? t("locomotive.shared.menu.#{name}") : name
|
2010-05-26 00:41:10 +00:00
|
|
|
if block_given?
|
|
|
|
popup = content_tag(:div, capture(&block), :class => 'popup', :style => 'display: none')
|
2011-03-03 22:51:07 +00:00
|
|
|
link = link_to(content_tag(:span, preserve(label_link) + content_tag(:em)) + content_tag(:em), url, :class => css)
|
|
|
|
content_tag(:li, link + popup, :class => 'hoverable')
|
2010-05-26 00:41:10 +00:00
|
|
|
else
|
2011-03-03 22:51:07 +00:00
|
|
|
content_tag(:li, link_to(content_tag(:span, label_link), url, :class => css))
|
2010-05-26 00:41:10 +00:00
|
|
|
end
|
2010-05-02 23:33:17 +00:00
|
|
|
end
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2011-11-08 14:34:25 +00:00
|
|
|
def local_action_button(text, url, options = {})
|
|
|
|
text = text.is_a?(Symbol) ? t(".#{text}") : text
|
|
|
|
link_to(url, options) do
|
|
|
|
content_tag(:em, escape_once(' ')) + text
|
|
|
|
end
|
|
|
|
end
|
2011-07-25 21:07:32 +00:00
|
|
|
|
2011-03-04 23:29:40 +00:00
|
|
|
def collection_to_js(collection, options = {})
|
|
|
|
js = collection.collect { |object| object.to_json }
|
|
|
|
|
2011-07-13 22:08:43 +00:00
|
|
|
options_to_js = ActiveSupport::JSON.encode(options).gsub(/^\{/, '').gsub(/\}$/, '')
|
2011-03-04 23:29:40 +00:00
|
|
|
|
|
|
|
"new Object({ \"collection\": [#{js.join(', ')}], #{options_to_js} })"
|
|
|
|
end
|
|
|
|
|
2011-11-04 15:55:51 +00:00
|
|
|
def flash_message
|
|
|
|
if not flash.empty?
|
|
|
|
first_key = flash.keys.first
|
|
|
|
content_tag :div, flash[first_key],
|
|
|
|
:id => "flash-#{first_key}",
|
|
|
|
:class => 'application-message'
|
|
|
|
else
|
|
|
|
''
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-11-21 01:27:05 +00:00
|
|
|
def backbone_view_class_name
|
|
|
|
action = case controller.action_name
|
|
|
|
when 'create' then 'New'
|
|
|
|
when 'update' then 'Edit'
|
|
|
|
else
|
|
|
|
controller.action_name
|
|
|
|
end.camelize
|
|
|
|
|
|
|
|
"Locomotive.Views.#{controller.controller_name.camelize}.#{action}View"
|
|
|
|
end
|
|
|
|
|
|
|
|
def backbone_view_data
|
|
|
|
content_for?(:backbone_view_data) ? content_for(:backbone_view_data) : 'null'
|
|
|
|
end
|
|
|
|
|
2010-06-03 15:32:40 +00:00
|
|
|
def nocoffee_tag
|
2010-07-06 15:00:02 +00:00
|
|
|
link_to 'noCoffee', 'http://www.nocoffee.fr', :id => 'nocoffee'
|
2010-06-03 15:32:40 +00:00
|
|
|
end
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2011-11-03 13:01:08 +00:00
|
|
|
# sites
|
|
|
|
|
|
|
|
def application_domain
|
|
|
|
domain = Locomotive.config.domain
|
|
|
|
domain += ":#{request.port}" if request.port != 80
|
|
|
|
domain
|
|
|
|
end
|
|
|
|
|
|
|
|
def manage_subdomain_or_domains?
|
|
|
|
Locomotive.config.manage_subdomain? || Locomotive.config.manage_domains?
|
|
|
|
end
|
|
|
|
|
|
|
|
def manage_subdomain?
|
|
|
|
Locomotive.config.manage_subdomain?
|
|
|
|
end
|
|
|
|
|
|
|
|
def manage_domains?
|
|
|
|
Locomotive.config.manage_domains?
|
|
|
|
end
|
|
|
|
|
|
|
|
def multi_sites?
|
|
|
|
Locomotive.config.multi_sites?
|
|
|
|
end
|
|
|
|
|
2011-11-10 21:41:20 +00:00
|
|
|
def public_page_url(page, options = {})
|
|
|
|
if content = options.delete(:content)
|
2011-11-29 01:24:02 +00:00
|
|
|
File.join(current_site_public_url, page.fullpath.gsub('content_type_template', ''), content._slug)
|
2011-11-10 21:41:20 +00:00
|
|
|
else
|
2011-11-29 01:24:02 +00:00
|
|
|
File.join(current_site_public_url, page.fullpath)
|
2011-11-10 21:41:20 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-11-29 13:58:19 +00:00
|
|
|
# memberships
|
|
|
|
|
|
|
|
def options_for_membership_roles(options = {})
|
|
|
|
list = (unless options[:skip_admin]
|
|
|
|
Locomotive::Ability::ROLES.map { |r| [t("locomotive.memberships.roles.#{r}"), r] }
|
|
|
|
else
|
|
|
|
(Locomotive::Ability::ROLES - ['admin']).map { |r| [t("locomotive.memberships.roles.#{r}"), r] }
|
|
|
|
end)
|
|
|
|
|
|
|
|
options_for_select(list)
|
|
|
|
end
|
|
|
|
|
2011-11-10 21:41:20 +00:00
|
|
|
|
2010-07-23 20:09:54 +00:00
|
|
|
end
|