parameter_renderer

Dan Morphis dan at milkcarton.com
Tue Nov 21 18:00:36 EST 2017


#gui/config/parameter_renderers.yml
VirtualParameters.pppoeUsername: username_link

When the GUI renders that vParam, it will call the function named
'username_link'

#gui/config/parameter_renderers/username_link.rb
def username_link(val)
  username = val.sub(/\@broadband/, '')
  if username != 'UNKNOWN'
    "<a
href=\"#{Rails.configuration.dashboard_base_url}/Broadband/Customer/Account/#{username}\"
target=\"_blank\">#{username}</a>"
  end
end

This turns the username into a clickable URL that links to our subscriber
management software


On Tue, Nov 21, 2017 at 1:53 PM, <eric at aisling-technologies.com> wrote:

> I am trying to get a handle on how to use the parameter_renderer.yml,
> using the sample with the uptime.  I see how the script and everything
> works, however, I have not found how to use it in my parameters.json to
> display in Index or summary?  Any help is greatly appreciated.
>
> _______________________________________________
> Users mailing list
> Users at lists.genieacs.com
> http://lists.genieacs.com/mailman/listinfo/users
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.genieacs.com/pipermail/users/attachments/20171121/93158f7a/attachment.html>


More information about the Users mailing list