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