This commit is contained in:
Tony Volpe
2024-06-17 14:41:24 -04:00
parent f885e93ca8
commit a00f379f7f
11158 changed files with 0 additions and 1781316 deletions

View File

@@ -1,55 +0,0 @@
<?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();
}
}