GitList
Repositories
Help
Report an Issue
vroom360
Code
Commits
Branches
Tags
Search
Tree:
e36c40f
Branches
Tags
master
vroom360
ezcMail
Mail
src
options
pop3_options.php
initial commit
Dev Ghai
commited
e36c40f
at 2013-09-26 06:24:15
pop3_options.php
Blame
History
Raw
<?php /** * File containing the ezcMailPop3TransportOptions class * * @package Mail * @version 1.7.1 * @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ /** * Class containing the options for POP3 transport. * * The options from {@link ezcMailTransportOptions} are inherited. * * Example of how to use POP3 transport options: * <code> * $options = new ezcMailPop3TransportOptions(); * $options->ssl = true; * $options->timeout = 3; * $options->authenticationMethod = ezcMailPop3Transport::AUTH_APOP; * * $pop3 = new ezcMailPop3Transport( 'pop3.example.com', null, $options ); * </code> * * @property int $authenticationMethod * Specifies the method to connect to the POP3 transport. The methods * supported are {@link ezcMailPop3Transport::AUTH_PLAIN_TEXT} and * {@link ezcMailPop3Transport::AUTH_APOP}. * * @package Mail * @version 1.7.1 */ class ezcMailPop3TransportOptions extends ezcMailTransportOptions { /** * Constructs an object with the specified values. * * @throws ezcBasePropertyNotFoundException * if $options contains a property not defined * @throws ezcBaseValueException * if $options contains a property with a value not allowed * @param array(string=>mixed) $options */ public function __construct( array $options = array() ) { // default authentication method is PLAIN $this->authenticationMethod = ezcMailPop3Transport::AUTH_PLAIN_TEXT; parent::__construct( $options ); } /** * Sets the option $name to $value. * * @throws ezcBasePropertyNotFoundException * if the property $name is not defined * @throws ezcBaseValueException * if $value is not correct for the property $name * @param string $name * @param mixed $value * @ignore */ public function __set( $name, $value ) { switch ( $name ) { case 'authenticationMethod': if ( !is_numeric( $value ) ) { throw new ezcBaseValueException( $name, $value, 'int' ); } $this->properties[$name] = (int) $value; break; default: parent::__set( $name, $value ); } } } ?>