Sequenzia/app/views/post/index.xml.php

11 lines
399 B
PHP
Raw Normal View History

2013-10-27 01:06:58 +02:00
<?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) {
2014-07-03 22:32:53 +02:00
echo ' ' . $this->tag('post', $post->api_attributes(), false, true) . "\n";
2013-10-27 01:06:58 +02:00
}
}, ['count' => $this->posts->totalRows(), 'offset' => ($this->posts->currentPage() - 1) * $this->posts->perPage()]);