示例#1
0
 public function getDateExpires() : DateTime
 {
     return Utility::getDateTimeFromMySQLDateTime($this->date_expires);
 }
示例#2
0
 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
 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);
 }