diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-08 22:16:04 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-08 22:16:04 -0400 |
commit | f0a30cc89ddf82e3c774800d24f0ea3664065d9c (patch) | |
tree | 13053422786e83ab57a55e63879e5ceb07d9ecfd /classes | |
parent | 2df28057cdd5c54fb4f754f5c2222154efe2ad5b (diff) |
read-only stuff
darcs-hash:20080509021604-84dde-f785fc09dd435fc12741b3a75184e2425721d03d.gz
Diffstat (limited to 'classes')
-rw-r--r-- | classes/Notice.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/classes/Notice.php b/classes/Notice.php index 6fe2f6755..f990675fb 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -23,4 +23,14 @@ class Notice extends DB_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + + // XXX: if profile_id changes, this goes invalid. To be fair, that's a very edge case + static $profile; + + function getProfile() { + if (!$this->profile) { + $this->profile = Profile::staticGet($this->profile_id); + } + return $this->profile; + } } |