Sequenzia/app/views/post/index.xml.php
2013-10-26 18:06:58 -05:00

11 lines
386 B
PHP
Executable File

<?php
echo '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
echo $this->contentTag('posts', function() {
// Make it look pretty.
echo "\n";
foreach ($this->posts as $post) {
echo ' ' . $this->tag('post', $post->api_attributes()) . "\n";
}
}, ['count' => $this->posts->totalRows(), 'offset' => ($this->posts->currentPage() - 1) * $this->posts->perPage()]);