[ Index ] |
MailPress 7.2 |
[ Index ] [ Classes ] [ Functions ] [ Variables ] [ Constants ] [ Statistics ] |
[Summary view] [Print] [Text view]
1 <?php 2 abstract class MP_Swift_connection_ 3 { 4 function __construct() 5 { 6 // for connection type & settings 7 add_filter( 'MailPress_Swift_Connection_type', array( $this, 'Swift_Connection_type' ), 8, 1 ); 8 // for connection 9 add_filter( "MailPress_Swift_Connection_{$this->Swift_Connection_type}", array( $this, 'connect' ), 8, 2 ); 10 } 11 12 function Swift_Connection_type( $x ) { return $this->Swift_Connection_type; } 13 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Tue May 19 15:55:14 2020 | Cross-referenced by PHPXref 0.7.1 |