Changeset 749 for trunk/app

Show
Ignore:
Timestamp:
09/02/08 19:34:11 (3 months ago)
Author:
aarkerio
Message:

backups scripts

Files:
1 modified

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(' / ');  
    14 
    2 <div class="title_section">Helps</div> 
     5 echo $html->div('title_section', __('Helps', true)); 
    36 
    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?> 
    79<table class="tbadmin"> 
    8  
    910<?php 
    10 //die(print_r($data)); 
    11  
    1211$th = array ('Edit', 'Url', 'Lang', 'Delete'); 
    13 echo $html->tableHeaders($th);   
    14 foreach ($data as $key=>$val) 
    15     { 
     12echo $html->tableHeaders($th); 
     13     
     14foreach ($data as $key=>$val): 
    1615       $tr = array ( 
    1716        $gags->sendEdit($val['Help']['id'], 'helps'), 
     
    2423                                array('class'=>'evenRow',"onmouseover"=>"this.className='highlight'", "onmouseout"=>"this.className='evenRow'")); 
    2524     
    26     } 
     25endforeach; 
    2726?> 
    2827</table>