Show
Ignore:
Timestamp:
07/22/08 17:08:42 (4 months ago)
Author:
aarkerio
Message:

Exmans and vclass

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/views/tests/admin_edit.ctp

    r362 r666  
    11<?php  
    2  echo $html->addCrumb('Control Tools', '/admin/entries/start'); 
    3  echo $html->addCrumb('Test', '/admin/tests/listing');  
     2 echo $html->addCrumb('Control Panel', '/admin/entries/start'); 
     3 echo $html->addCrumb(__('Test', true), '/admin/tests/listing');  
    44 echo $html->getCrumbs(' / ');  
    55  
     
    1010<legend>Edit test</legend> 
    1111<?php  
    12  echo $html->div('required', $form->input('Test.title', array("size" => 40, "maxlength" => 120)));  
    13     
    14  echo $html->div('required', $form->label('Test.description', 'Description:') . $form->textarea('Test.description', array("cols" => 50, "rows" => 15)));  
     12 echo $html->div('required', $form->input('Test.title', array('size'=> 40,'maxlength' => 120, ''=>__('Title'. true))));    
     13 echo $html->div('required', $form->label('Test.description', __('Description', true)) . $form->textarea('Test.description', array("cols" => 50, "rows" => 15)));  
    1514    
    1615 echo $html->div('required', $form->label('Test.status', 'Published:' ) . $form->checkbox('Test.status', array('value'=>1))); 
    1716  
    18  echo $form->end('Save');  
     17 echo $form->end(__('Save', true));  
    1918?>  
    2019</fieldset>