diff options
Diffstat (limited to 'modules/atom/libraries')
-rw-r--r-- | modules/atom/libraries/Atom_Author.php | 1 | ||||
-rw-r--r-- | modules/atom/libraries/Atom_Base.php | 1 | ||||
-rw-r--r-- | modules/atom/libraries/Atom_Entry.php | 1 | ||||
-rw-r--r-- | modules/atom/libraries/Atom_Feed.php | 1 | ||||
-rw-r--r-- | modules/atom/libraries/Atom_Link.php | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/modules/atom/libraries/Atom_Author.php b/modules/atom/libraries/Atom_Author.php index ec3c61aa..3ee4df41 100644 --- a/modules/atom/libraries/Atom_Author.php +++ b/modules/atom/libraries/Atom_Author.php @@ -17,6 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ + class Atom_Author_Core extends Atom_Base { public function name($name) { $this->element->appendChild($this->dom->createElement("name", $name)); diff --git a/modules/atom/libraries/Atom_Base.php b/modules/atom/libraries/Atom_Base.php index bf115033..0cb33b0b 100644 --- a/modules/atom/libraries/Atom_Base.php +++ b/modules/atom/libraries/Atom_Base.php @@ -17,6 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ + class Atom_Base_Core { protected $dom; protected $element; diff --git a/modules/atom/libraries/Atom_Entry.php b/modules/atom/libraries/Atom_Entry.php index d566f49b..345755c2 100644 --- a/modules/atom/libraries/Atom_Entry.php +++ b/modules/atom/libraries/Atom_Entry.php @@ -17,6 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ + class Atom_Entry_Core extends Atom_Base { public function id($id) { $this->element->appendChild($this->dom->createElement("id", $id)); diff --git a/modules/atom/libraries/Atom_Feed.php b/modules/atom/libraries/Atom_Feed.php index 0b667e88..8efeb4f2 100644 --- a/modules/atom/libraries/Atom_Feed.php +++ b/modules/atom/libraries/Atom_Feed.php @@ -17,6 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ + class Atom_Feed_Core extends Atom_Base { public function id($id) { $this->element->appendChild($this->dom->createElement("id", $id)); diff --git a/modules/atom/libraries/Atom_Link.php b/modules/atom/libraries/Atom_Link.php index 5fff30f2..723675c1 100644 --- a/modules/atom/libraries/Atom_Link.php +++ b/modules/atom/libraries/Atom_Link.php @@ -17,6 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ + class Atom_Link_Core extends Atom_Base { public function rel($rel) { $this->element->setAttribute("rel", $rel); |