Convert static string methods in integrations to class methods
Summary
Integration models define a few methods which return static strings:
#title
#description
#help
#to_param
Improvements
Convert these methods to class methods, so we can use them in e.g. the field DSL.
We could still keep the instance methods and let them delegate to the class methods.