root/trunk/app/views/catglossaries/view.ctp

Revision 699, 389 bytes (checked in by aarkerio, 4 months ago)

New validate arrays

Line 
1<h1><?php echo $data['Catglossary']['title']; ?></h1>
2<?php
3//exit(debug($data));
4if ( count($data['Glossary']) < 1):
5     echo $html->para(null, '<b>'.__('No items yet', true).'</b>');
6endif;
7
8foreach ($data['Glossary'] as $v):
9    echo $html->div(null, '<b>'. $v['item'].'</b><br /><br />'. $v['definition'], aa('style','border:1px dotted gray;padding:8px;margin:8px;'));
10endforeach;
11?>
Note: See TracBrowser for help on using the browser.