read-only stuff

darcs-hash:20080509021604-84dde-f785fc09dd435fc12741b3a75184e2425721d03d.gz
This commit is contained in:
Evan Prodromou
2008-05-08 22:16:04 -04:00
parent 2df28057cd
commit f0a30cc89d
11 changed files with 549 additions and 37 deletions

View File

@@ -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;
}
}