예제 #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);
 }