HM\BackUpWordPress\Email_Service::display PHP Method

display() public method

The sentence fragment that is output as part of the schedule sentence
public display ( ) : string
return string
    public function display()
    {
        if ($emails = $this->get_email_address_array()) {
            $email = '<code>' . implode('</code>, <code>', array_map('esc_html', $emails)) . '</code>';
            return sprintf(__('Send an email notification to %s', 'backupwordpress'), $email);
        }
        return '';
    }