function __construct()
 {
     parent::__construct("entry");
     /* Set feed ID and self link. */
     $this->id(html::chars(url::abs_current()));
     $this->link()->rel("self")->href(url::abs_current());
 }
Esempio n. 2
0
<?php

$entry = new Atom_Entry();
$entry->setTitle(new Atom_Title('Atom-Powered Robots Run Amok'));
$entry->addLink(new Atom_Link('', array('href' => 'http://example.org/2003/12/13/atom03')));
$entry->setId(new Atom_Id('urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a'));
$entry->setUpdated(new Atom_Updated(new DateTime('2003-12-13 18:30:02')));
$entry->setSummary(new Atom_Summary('Some summary.'));