Maileon PHP client
1.5.0
Easily integrate your PHP application with Maileon.
Main Page
Related Pages
Classes
Files
File List
AbstractXMLWrapper.php
1
<?php
2
9
abstract
class
com_maileon_api_xml_AbstractXMLWrapper
10
{
17
abstract
function
fromXML
($xmlElement);
18
25
function
fromXMLString
($xmlString)
26
{
27
$xmlElement = simplexml_load_string($xmlString);
28
$this->
fromXML
($xmlElement);
29
}
30
37
abstract
function
toXML
();
38
46
function
toXMLString
()
47
{
48
$result = $this->
toXML
();
49
return
$result->asXML();
50
}
51
56
abstract
function
toString
();
57
}
com_maileon_api_xml_AbstractXMLWrapper\toXML
toXML()
com_maileon_api_xml_AbstractXMLWrapper
Definition:
AbstractXMLWrapper.php:9
com_maileon_api_xml_AbstractXMLWrapper\fromXML
fromXML($xmlElement)
com_maileon_api_xml_AbstractXMLWrapper\toString
toString()
com_maileon_api_xml_AbstractXMLWrapper\toXMLString
toXMLString()
Definition:
AbstractXMLWrapper.php:46
com_maileon_api_xml_AbstractXMLWrapper\fromXMLString
fromXMLString($xmlString)
Definition:
AbstractXMLWrapper.php:25
client
com
maileon
api
xml
AbstractXMLWrapper.php
Generated on Tue Apr 2 2019 16:02:13 for Maileon PHP client by
1.8.9.1