- Timestamp:
- 09/02/08 19:34:11 (3 months ago)
- Files:
-
- 1 modified
-
trunk/app/views/helps/admin_listing.ctp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/views/helps/admin_listing.ctp
r303 r749 1 <?php 2 echo $html->addCrumb('Control Panel', '/admin/entries/start'); 3 echo $html->getCrumbs(' / '); 1 4 2 <div class="title_section">Helps</div> 5 echo $html->div('title_section', __('Helps', true)); 3 6 4 5 <p><?php echo $html->link($html->image('actions/new.png', array("alt"=>"Add new", "title"=>"Add new")), '/admin/helps/add', null, false, false); ?></p> 6 7 echo $html->div(null, $html->link($html->image('actions/new.png', array('alt'=>__('Add new' ,true), 'title'=>__('Add new', true))), '/admin/helps/add', null, false, false)); 8 ?> 7 9 <table class="tbadmin"> 8 9 10 <?php 10 //die(print_r($data));11 12 11 $th = array ('Edit', 'Url', 'Lang', 'Delete'); 13 echo $html->tableHeaders($th); 14 foreach ($data as $key=>$val) 15 { 12 echo $html->tableHeaders($th); 13 14 foreach ($data as $key=>$val): 16 15 $tr = array ( 17 16 $gags->sendEdit($val['Help']['id'], 'helps'), … … 24 23 array('class'=>'evenRow',"onmouseover"=>"this.className='highlight'", "onmouseout"=>"this.className='evenRow'")); 25 24 26 } 25 endforeach; 27 26 ?> 28 27 </table>
