AtomParser::__construct()publicWP 1.0

PHP5 constructor.

Метод класса: AtomParser{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$AtomParser = new AtomParser();
$AtomParser->__construct();

Код AtomParser::__construct() WP 6.5.2

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' );
}