mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 17:16:18 +00:00
Removed unused code.
This commit is contained in:
parent
84e405db81
commit
a28e8ba4e7
2 changed files with 1 additions and 89 deletions
|
@ -150,14 +150,6 @@ class EmailComponent extends Component {
|
||||||
*/
|
*/
|
||||||
public $template = null;
|
public $template = null;
|
||||||
|
|
||||||
/**
|
|
||||||
* as per RFC2822 Section 2.1.1
|
|
||||||
*
|
|
||||||
* @var integer
|
|
||||||
* @access public
|
|
||||||
*/
|
|
||||||
public $lineLength = 70;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Line feed character(s) to be used when sending using mail() function
|
* Line feed character(s) to be used when sending using mail() function
|
||||||
* By default PHP_EOL is used.
|
* By default PHP_EOL is used.
|
||||||
|
@ -168,12 +160,7 @@ class EmailComponent extends Component {
|
||||||
* @var string
|
* @var string
|
||||||
* @access public
|
* @access public
|
||||||
*/
|
*/
|
||||||
var $lineFeed = PHP_EOL;
|
public $lineFeed = PHP_EOL;
|
||||||
|
|
||||||
/**
|
|
||||||
* @deprecated see lineLength
|
|
||||||
*/
|
|
||||||
protected $_lineLength = null;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* What format should the email be sent in
|
* What format should the email be sent in
|
||||||
|
@ -291,49 +278,6 @@ class EmailComponent extends Component {
|
||||||
*/
|
*/
|
||||||
public $messageId = true;
|
public $messageId = true;
|
||||||
|
|
||||||
/**
|
|
||||||
* Temporary store of message header lines
|
|
||||||
*
|
|
||||||
* @var array
|
|
||||||
* @access protected
|
|
||||||
*/
|
|
||||||
protected $_header = array();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* If set, boundary to use for multipart mime messages
|
|
||||||
*
|
|
||||||
* @var string
|
|
||||||
* @access protected
|
|
||||||
*/
|
|
||||||
protected $_boundary = null;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Temporary store of message lines
|
|
||||||
*
|
|
||||||
* @var array
|
|
||||||
* @access protected
|
|
||||||
*/
|
|
||||||
protected $_message = array();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Variable that holds SMTP connection
|
|
||||||
*
|
|
||||||
* @var resource
|
|
||||||
* @access protected
|
|
||||||
*/
|
|
||||||
protected $_smtpConnection = null;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructor
|
|
||||||
*
|
|
||||||
* @param ComponentCollection $collection A ComponentCollection this component can use to lazy load its components
|
|
||||||
* @param array $settings Array of configuration settings.
|
|
||||||
*/
|
|
||||||
public function __construct(ComponentCollection $collection, $settings = array()) {
|
|
||||||
$this->Controller = $collection->getController();
|
|
||||||
parent::__construct($collection, $settings);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialize component
|
* Initialize component
|
||||||
*
|
*
|
||||||
|
@ -345,13 +289,6 @@ class EmailComponent extends Component {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Startup component
|
|
||||||
*
|
|
||||||
* @param object $controller Instantiating controller
|
|
||||||
*/
|
|
||||||
public function startup($controller) {}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Send an email using the specified content, template and layout
|
* Send an email using the specified content, template and layout
|
||||||
*
|
*
|
||||||
|
|
|
@ -20,7 +20,6 @@
|
||||||
*/
|
*/
|
||||||
App::uses('Controller', 'Controller');
|
App::uses('Controller', 'Controller');
|
||||||
App::uses('EmailComponent', 'Controller/Component');
|
App::uses('EmailComponent', 'Controller/Component');
|
||||||
App::uses('CakeSocket', 'Network');
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* EmailTestComponent class
|
* EmailTestComponent class
|
||||||
|
@ -29,29 +28,6 @@ App::uses('CakeSocket', 'Network');
|
||||||
*/
|
*/
|
||||||
class EmailTestComponent extends EmailComponent {
|
class EmailTestComponent extends EmailComponent {
|
||||||
|
|
||||||
/**
|
|
||||||
* Convenience getter for testing.
|
|
||||||
*
|
|
||||||
* @access public
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
function getMessage() {
|
|
||||||
if (empty($this->_message)) {
|
|
||||||
return array();
|
|
||||||
}
|
|
||||||
return $this->_message;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Convenience getter for testing.
|
|
||||||
*
|
|
||||||
* @access protected
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
function _getMessage() {
|
|
||||||
return $this->_message;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Convenience method for testing.
|
* Convenience method for testing.
|
||||||
*
|
*
|
||||||
|
@ -783,7 +759,6 @@ HTMLBLOC;
|
||||||
$this->assertNull($this->Controller->EmailTest->date);
|
$this->assertNull($this->Controller->EmailTest->date);
|
||||||
$this->assertNull($this->Controller->EmailTest->subject);
|
$this->assertNull($this->Controller->EmailTest->subject);
|
||||||
$this->assertNull($this->Controller->EmailTest->additionalParams);
|
$this->assertNull($this->Controller->EmailTest->additionalParams);
|
||||||
$this->assertIdentical($this->Controller->EmailTest->getMessage(), array());
|
|
||||||
$this->assertNull($this->Controller->EmailTest->smtpError);
|
$this->assertNull($this->Controller->EmailTest->smtpError);
|
||||||
$this->assertIdentical($this->Controller->EmailTest->attachments, array());
|
$this->assertIdentical($this->Controller->EmailTest->attachments, array());
|
||||||
$this->assertNull($this->Controller->EmailTest->textMessage);
|
$this->assertNull($this->Controller->EmailTest->textMessage);
|
||||||
|
|
Loading…
Add table
Reference in a new issue