Hackfut Security File Manager
Current Path:
/home/haielekt/pasangac.com/wp-content/plugins/wp-mail-smtp/src
home
/
haielekt
/
pasangac.com
/
wp-content
/
plugins
/
wp-mail-smtp
/
src
/
📁
..
📄
AbstractConnection.php
(1.09 KB)
📁
Admin
📁
Compatibility
📄
Conflicts.php
(14.42 KB)
📄
Connect.php
(8.73 KB)
📄
Connection.php
(964 B)
📄
ConnectionInterface.php
(1.01 KB)
📄
ConnectionsManager.php
(765 B)
📄
Core.php
(33.3 KB)
📄
DBRepair.php
(5.64 KB)
📄
Debug.php
(3.5 KB)
📄
Geo.php
(5.39 KB)
📁
Helpers
📄
MailCatcher.php
(1.36 KB)
📄
MailCatcherInterface.php
(1.16 KB)
📄
MailCatcherTrait.php
(9.36 KB)
📄
MailCatcherV6.php
(1.21 KB)
📄
Migration.php
(12.11 KB)
📄
MigrationAbstract.php
(3.21 KB)
📄
Options.php
(40.08 KB)
📄
Processor.php
(11.21 KB)
📁
Providers
📁
Reports
📄
SiteHealth.php
(12.63 KB)
📁
Tasks
📄
Upgrade.php
(1.16 KB)
📄
Uploads.php
(4.63 KB)
📁
UsageTracking
📄
WP.php
(18.81 KB)
📄
WPMailInitiator.php
(4.02 KB)
Editing: ConnectionsManager.php
<?php namespace WPMailSMTP; /** * Class ConnectionsManager. * * @since 3.7.0 */ class ConnectionsManager { /** * Primary connection object. * * @since 3.7.0 * * @var ConnectionInterface */ private $primary_connection = null; /** * Get the connection object that should be used for email sending. * * @since 3.7.0 * * @return ConnectionInterface */ public function get_mail_connection() { return $this->get_primary_connection(); } /** * Get the primary connection object. * * @since 3.7.0 * * @return ConnectionInterface */ public function get_primary_connection() { if ( is_null( $this->primary_connection ) ) { $this->primary_connection = new Connection(); } return $this->primary_connection; } }
Upload File
Create Folder