X7ROOT File Manager
Current Path:
/home/oakwood/public_html/wp-content/plugins/wp-mail-smtp/src/Admin/Pages
home
/
oakwood
/
public_html
/
wp-content
/
plugins
/
wp-mail-smtp
/
src
/
Admin
/
Pages
/
ðŸ“
..
📄
About.php
(1.52 KB)
📄
AboutTab.php
(32.31 KB)
📄
ActionSchedulerTab.php
(3.13 KB)
📄
AdditionalConnectionsTab.php
(5.31 KB)
📄
AlertsTab.php
(16.83 KB)
📄
AuthTab.php
(1.28 KB)
📄
ControlTab.php
(13.11 KB)
📄
DebugEventsTab.php
(16.48 KB)
📄
EmailReports.php
(714 B)
📄
EmailReportsTab.php
(5.29 KB)
📄
ExportTab.php
(5.59 KB)
📄
Logs.php
(1016 B)
📄
LogsTab.php
(5.81 KB)
📄
MiscTab.php
(18.09 KB)
📄
SettingsTab.php
(13.44 KB)
📄
SmartRoutingTab.php
(13.11 KB)
📄
TestTab.php
(65.52 KB)
📄
Tools.php
(687 B)
📄
VersusTab.php
(7.17 KB)
Editing: About.php
<?php namespace WPMailSMTP\Admin\Pages; use WPMailSMTP\Admin\ParentPageAbstract; /** * About parent page. * * @since 1.5.0 * @since 2.9.0 changed parent class from PageAbstract to ParentPageAbstract. */ class About extends ParentPageAbstract { /** * Slug of a page. * * @since 1.5.0 * * @var string Slug of a page. */ protected $slug = 'about'; /** * Page default tab slug. * * @since 2.9.0 * * @var string */ protected $default_tab = 'about'; /** * Get label for a tab. * Process only those that exists. * Defaults to "About Us". * * @since 1.5.0 * * @param string $tab Tab to get label for. * * @return string */ public function get_label( $tab = '' ) { if ( ! empty( $tab ) ) { return $this->get_tab_label( $tab ); } return esc_html__( 'About Us', 'wp-mail-smtp' ); } /** * Title of a page. * * @since 1.5.0 * * @return string */ public function get_title() { return $this->get_label(); } /** * Active the given plugin. * * @deprecated 2.9.0 * * @since 1.5.0 */ public static function ajax_plugin_activate() { _deprecated_function( __METHOD__, '2.9.0', '\WPMailSMTP\Admin\Pages\AboutTab::ajax_plugin_activate' ); AboutTab::ajax_plugin_activate(); } /** * Install & activate the given plugin. * * @deprecated 2.9.0 * * @since 1.5.0 */ public static function ajax_plugin_install() { _deprecated_function( __METHOD__, '2.9.0', '\WPMailSMTP\Admin\Pages\AboutTab::ajax_plugin_install' ); AboutTab::ajax_plugin_install(); } }
Upload File
Create Folder