示例#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 FormProduct[]
  */
 public static function GetJournalForId($intId)
 {
     $objDatabase = FormProduct::GetDatabase()->JournalingDatabase;
     $objResult = $objDatabase->Query('SELECT * FROM form_product WHERE id = ' . $objDatabase->SqlVariable($intId) . ' ORDER BY __sys_date');
     return FormProduct::InstantiateDbResult($objResult);
 }