Database fields
The following values are avaible to create custom layouts in the component or module
item values
- [items_id] => incremetal number
- [feed_id] => 147
- [feed] => Name of the feed from the feed configuration
- [hits] => number of kliks on the url
- [description]
- [title]
- [url] => cloacked url in mod_datamenu the name is count_url, url is the uncloacked version
- [Prijs] => the price
- [Select0]...[Select9] => Fields from the database
- [image] => image url
Obsolete
- [adddate] => date (date/time in older versions) added, use items_id to sort on added date
- [s0] => Select0
- [s1]...[s3] => Values for this item as they appear on menu level 1 - 3, see default_full.php how to get these
- [pprijs] => the price as well
Simple component layout to show it all
<?php
defined('_JEXEC') or die('Restricted access');
# components/com_datafeeds/views/items/tmpl/default_dummy.php
if ($this->pagination ) {
$links= $this->pagination->getPagesLinks();
echo '<div class="pagination" id="datafeeds_top">'.$links.'</div>';
}
foreach ($this->dataitems as $item ) {
print "<pre>";
print_r($item);
print "</pre><hr>";
}