Example #1
0
 /**
  * Gets the historical journal for an object from the log database.
  * Objects will have VirtualAttributes available to lookup login, date, and action information from the journal object.
  * @param integer intId
  * @return StewardshipFund[]
  */
 public static function GetJournalForId($intId)
 {
     $objDatabase = StewardshipFund::GetDatabase()->JournalingDatabase;
     $objResult = $objDatabase->Query('SELECT * FROM stewardship_fund WHERE id = ' . $objDatabase->SqlVariable($intId) . ' ORDER BY __sys_date');
     return StewardshipFund::InstantiateDbResult($objResult);
 }