Display the last engagement on the subscribers stats page

[MAILPOET-3770]
This commit is contained in:
Pavel Dohnal
2021-09-08 09:08:06 +02:00
committed by Veljko V
parent 1aef43cfc9
commit 206dd92054
3 changed files with 14 additions and 0 deletions

View File

@ -48,6 +48,10 @@ class SubscriberStats extends APIEndpoint {
'click' => $statistics->getClickCount(),
'engagement_score' => $subscriber->getEngagementScore(),
];
$lastEngagement = $subscriber->getLastEngagementAt();
if ($lastEngagement instanceof \DateTimeInterface) {
$response['last_engagement'] = $lastEngagement->format('Y-m-d H:i:s');
}
$woocommerce = $statistics->getWooCommerceRevenue();
if ($woocommerce instanceof WooCommerceRevenue) {
$response['woocommerce'] = $woocommerce->asArray();