ruby on rails - Inject data members to an object -


this question based on another question of mine(thankfully answered).

so if in model have this:

def self.find_extended     person = person.find(:first)     complete_name = person.firstname + ', ' + person.lastname     return person end 

how can inject complete name in person object in controller/view can access person.complete_name?

thank time,
silviu

i think best way creation of complete_name attribute in person class:

def complete_name   firstname + ', ' + lastname end 

Comments

Popular posts from this blog

windows - Why does Vista not allow creation of shortcuts to "Programs" on a NonAdmin account? Not supposed to install apps from NonAdmin account? -

c++ - How do I get a multi line tooltip in MFC -

unit testing - How to mock PreferenceManager in Android? -