コード例 #1
0
ファイル: Remember.php プロジェクト: stevenimle/GMA
 public function getDateExpires() : DateTime
 {
     return Utility::getDateTimeFromMySQLDateTime($this->date_expires);
 }
コード例 #2
0
ファイル: Chapter.php プロジェクト: stevenimle/GMA
 public function getTimeJoined() : DateTime
 {
     return Utility::getDateTimeFromMySQLDateTime($this->time_joined);
 }
コード例 #3
0
ファイル: User.php プロジェクト: stevenimle/GMA
 public function isTokenExpiredAccountVerify() : bool
 {
     return Utility::getDateTimeFromMySQLDateTime($this->token_expiry_account_verify) < new DateTime();
 }
コード例 #4
0
ファイル: Fee.php プロジェクト: stevenimle/GMA
 public function getDateApplied() : DateTime
 {
     return Utility::getDateTimeFromMySQLDateTime($this->date_applied);
 }
コード例 #5
0
ファイル: Payment.php プロジェクト: stevenimle/GMA
 public function getDatePaid() : DateTime
 {
     return Utility::getDateTimeFromMySQLDateTime($this->date_paid);
 }
コード例 #6
0
ファイル: Group.php プロジェクト: stevenimle/GMA
 public function getLmodDate() : DateTime
 {
     return Utility::getDateTimeFromMySQLDateTime($this->lmod_date);
 }
コード例 #7
0
ファイル: Event.php プロジェクト: stevenimle/GMA
 public function getDateCreated() : DateTime
 {
     return Utility::getDateTimeFromMySQLDateTime($this->date_created);
 }