AtomParser::__construct
PHP5 constructor.
Method of the class: AtomParser{}
No Hooks.
Returns
null. Nothing (null).
Usage
$AtomParser = new AtomParser(); $AtomParser->__construct();
AtomParser::__construct() AtomParser:: construct code WP 6.9.1
function __construct() {
$this->feed = new AtomFeed();
$this->current = null;
$this->map_attrs_func = array( __CLASS__, 'map_attrs' );
$this->map_xmlns_func = array( __CLASS__, 'map_xmlns' );
}