📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-26 11:36:06
📂
/
/
home
/
pallabnv
/
public_html
/
wp-content__3bb9dea
/
plugins
/
wp-mail-smtp
/
src
/
Admin
/
Pages
✏️
Editing: EmailReports.php
<?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(); } }
💾 Save Changes
❌ Cancel