/home/vianto5/cititower.mx/wp-content/plugins/sitepress-multilingual-cms/classes/ATE/Log
NameSizeModeActions
Entry.php18050644editdlrm
EventsTypes.php8780644editdlrm
Hooks.php7710644editdlrm
Storage.php20360644editdlrm
View.php24690644editdlrm
ViewFactory.php1970644editdlrm
Edit: /home/vianto5/cititower.mx/wp-content/plugins/sitepress-multilingual-cms/classes/ATE/Log/Entry.php (1805B)
timestamp = (int) $item['timestamp']; $this->eventType = (int) ( isset( $item['eventType'] ) ? $item['eventType'] : $item['event'] ); $this->description = $item['description']; $this->wpmlJobId = (int) $item['wpmlJobId']; $this->ateJobId = (int) $item['ateJobId']; $this->extraData = (array) $item['extraData']; } } public static function createForType($eventType, $extraData) { $entry = new self(); $entry->eventType = $eventType; $entry->extraData = $extraData; return $entry; } public static function retryJob( $wpmlJobId, $extraData ) { $entry = self::createForType(EventsTypes::JOB_RETRY, $extraData); $entry->wpmlJobId = $wpmlJobId; return $entry; } /** * @return string */ public function getFormattedDate() { return date_i18n( 'Y/m/d g:i:s A', $this->timestamp ); } /** * @return string */ public function getExtraDataToString() { return json_encode( $this->extraData ); } }