Sha256: 06ab5434e22b4dec4886ff922a6099a0d125a6b613668bc4e6e137073ec9af72
Contents?: true
Size: 745 Bytes
Versions: 2
Compression:
Stored size: 745 Bytes
Contents
# Methods added to this helper will be available to all templates in the application. module ApplicationHelper # Affiche proprement le nom d'un object in world ou bien "none" # # XXX Ce helper n'est plus utilisé, on peut sans doute le supprimer. # # == Input # # +oiw+:: ObjectInWorld # # == Output # # Affiche le nom, échappé avec "<tt>h()</tt>", ou bien le mot "+none+" def object_name(oiw) oiw ? h(oiw.name) : "none" end # Affiche proprement l'url d'un ObjectOffWorld # # == Input # # +oow+:: ObjectOffWorld # # == Output # # Affiche le nom, avec un lien hypertexte, ou bien le mot "+none+" def object_url(oow) oow ? "<a href=\"#{oow.content}\">#{oow.name}</a>" : "none" end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
advertnet-1.0.0 | app/helpers/application_helper.rb |
advertnet-1.0.1 | app/helpers/application_helper.rb |