Project

General

Profile

Download (1.31 KB) Statistics
| Branch: | Tag: | Revision:
module CommonParametersHelper
# Return true if user is authorized for controller/action OR controller/action@type, otherwise false
# third argument may be specific object (usually for edit and destroy actions)
def authorized_via_my_scope(controller, action, object = nil)
authorized_for(:controller => controller, :action => action, :auth_object => object)
end

def parameters_title
_("Parameters that would be associated with hosts in this %s") % (type)
end

def parameter_value_field(value)
source_name = value[:source_name] ? "(#{value[:source_name]})" : nil
content_tag :div, :class => "form-group condensed" do
text_area_tag("value_#{value[:safe_value]}", value[:safe_value], :rows => (value[:safe_value].to_s.lines.count || 1 rescue 1),
:class => "col-md-6", :disabled => true, :'data-hidden-value' => Parameter.hidden_value) +
fullscreen_button +
content_tag(:span, :class => "help-inline") { popover(_("Additional info"), _("<b>Source:</b> %{type} %{name}") % {:type => _(value[:source].to_s), :name => source_name})}
end
end

def use_puppet_default_help link_title = nil, title = _("Use Puppet default")
popover(link_title, _("Do not send this parameter via the ENC.<br>Puppet will use the value defined in the manifest."), :title => title)
end
end
(7-7/41)