Files
SIGE-WEB-snapshot/wp-content/plugins/userfeedback-lite/includes/admin/notifications/class-userfeedback-notification-upgrade-after-7-days.php

34 lines
892 B
PHP

<?php
/**
*
* @see UserFeedback_Notification_Event
* @since 1.0.0
*
* @package UserFeedback
* @subpackage Notifications
* @author David Paternina
*/
class UserFeedback_Notification_Upgrade_After_7_Days extends UserFeedback_Notification_Event {
public $id = 'userfeedback_upgrade_after_7_days';
public $license_types = array( 'lite' );
public $interval = 7;
public function prepare() {
$this->title = __( 'Get More UserFeedback', 'userfeedback' );
$this->content =
__( 'Ask more types of questions, customize displays, and unlock better insights with UserFeedback Pro.', 'userfeedback' );
$this->buttons[] = array(
'text' => __( 'Upgrade to Pro', 'userfeedback' ),
'url' => userfeedback_get_upgrade_link(),
'is_external' => true,
);
return parent::prepare();
}
}
new UserFeedback_Notification_Upgrade_After_7_Days();