AutoCommit Sam Aug 1 11:03:01 CEST 2015

This commit is contained in:
Andreas Stephanides
2015-08-01 11:03:01 +02:00
parent d5571b38fa
commit a079a88dbc
4 changed files with 25 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
module PluginsHelper
def divid_for(object,suffix="")
if object.nil?
""
else
object.class.to_s.to_lower.gsub("::","_")+ suffix.to_lower + object.id.to_s
end
end
end
o