Merged in feature/from-pantheon (pull request #16)

code from pantheon

* code from pantheon
This commit is contained in:
Tony Volpe
2024-01-10 17:03:02 +00:00
parent 054b4fffc9
commit 4eb982d7a8
16492 changed files with 3475854 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
<?php
namespace WPMailSMTP\Admin\Pages;
use WPMailSMTP\Admin\ParentPageAbstract;
/**
* Class EmailReports.
*
* @since 3.0.0
*/
class EmailReports extends ParentPageAbstract {
/**
* Page default tab slug.
*
* @since 3.0.0
*
* @var string
*/
protected $default_tab = 'reports';
/**
* Slug of a page.
*
* @since 3.0.0
*
* @var string
*/
protected $slug = 'reports';
/**
* Link label of a page.
*
* @since 3.0.0
*
* @return string
*/
public function get_label() {
return esc_html__( 'Email Reports', 'wp-mail-smtp' );
}
/**
* Title of a page.
*
* @since 3.0.0
*
* @return string
*/
public function get_title() {
return $this->get_label();
}
}