The Techjoomla Blog

Stay updated with all the latest happenings at Techjoomla. From news about the developments in your favourite extensions to Tips & Tricks about the Joomla CMS, Framework & Development.
Font size: +
1 minute reading time (282 words)

Rendering Zoo Records flexibly - Example with Record lists

Rendering-Zoo-Records-flexibly

Rendering a List view of Zoo items using Code

 

Zoo is one of the most versatile CCK extensions available in Joomla. It's flexible & at the same time easy to use for end users. In spite of these positive points, there are times when you have to dive into development & Zoo APIs to develop your own custom views.

In this particular case, we wanted to develop a List/Grid view with Zoo ( of a particular Content Type)  which showed all Zoo attributes in a table view for easier data viewing on the frontend for content managers. In this blog, we will tell you just how to go about doing that

You must be thinking what's the big deal? Just fetch the records based on submission id & display them in any way you want.

Well... It's not as easy as that, as Zoo uses JSON to store record data which is great. But it makes it a bit difficult to render zoo elements. It's quite complicated to get zoo item details from the database by executing queries. Even if you manage it won't be robust. To get related records from the table you have to deal with a 36 key string, which zoo uses as the field identifier. So let's get away from this hassle of doing it with your own code. That's not the right way to go about it anyways!

Let's take a look at how best to do that using the Zoo APIs.

// Get the Zoo Instance
$zapp = App::getInstance('zoo');

$items = $app->table->item->all(array('conditions' => 'id = '.$Zoo_Item_id)); 

//$Zoo_Item_id must be zoo item id of which you want to render details
 
foreach($items as $item)
{
 foreach ($item->getElements() as $id => $element)
 {
  echo $element->render(); 
 }
}
4
×
Stay Informed

When you subscribe to the blog, we will send you an e-mail when there are new updates on the site so you wouldn't miss them.

JGive (formerly jomGive) - Donations & Fund Raisin...
Awesome Halloween Offers from Techjoomla & Partner...

Related Posts

 

Blog Topics