コード例 #1
0
ファイル: Journal.inc.php プロジェクト: alcexhim/PhoenixSNS
 public static function GetByAssoc($values)
 {
     $entry = new JournalEntry();
     $entry->ID = $values["entry_id"];
     $entry->Name = $values["entry_name"];
     $entry->Title = $values["entry_title"];
     $entry->Content = $values["entry_content"];
     $entry->Journal = Journal::GetByID($values["journal_id"]);
     $entry->TimestampCreated = $values["entry_timestamp_created"];
     $entry->TimestampModified = $values["entry_timestamp_modified"];
     return $entry;
 }