Changeset 724 for trunk/app/views/ecourses
- Timestamp:
- 08/14/08 15:21:41 (4 months ago)
- Location:
- trunk/app/views/ecourses
- Files:
-
- 2 modified
-
admin_listing.ctp (modified) (1 diff)
-
admin_vclassrooms.ctp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/views/ecourses/admin_listing.ctp
r722 r724 2 2 echo $html->addCrumb('Control Panel', '/admin/entries/start'); 3 3 echo $html->getCrumbs(' / '); 4 5 echo $html->div('title_section', 'eCourses'); 4 6 5 7 echo $html->para(null, $html->link($html->image('actions/new.png', array('alt'=>__('Add new', true), 'title'=>__('Add new',true))), '/admin/ecourses/add', null, null, false)); -
trunk/app/views/ecourses/admin_vclassrooms.ctp
r624 r724 3 3 4 4 echo $html->addCrumb('Control Panel', '/admin/entries/start'); 5 echo $html->addCrumb(' Courses', '/admin/ecourses/listing');5 echo $html->addCrumb('eCourses', '/admin/ecourses/listing'); 6 6 echo $html->getCrumbs(' / '); 7 7 8 $str = 'Classrooms on '. $data['Ecourse']['title'];8 $str = __('vGroups on', true) .': '. $data['Ecourse']['title']; 9 9 10 10 if ( isset( $historic ) ): … … 16 16 17 17 if ( count($data['Vclassroom']) < 1 ): 18 e($html->div('notice', 'No classrooms yet'));18 e($html->div('notice', __('No vGroups yet', true))); 19 19 $img = 'admin/vgroups-gray.gif'; 20 20 else: … … 22 22 endif; 23 23 24 echo $html->para(null, $html->link($html->image($img, array( "alt"=>"Add new group", "title"=>"Add new group")), '/admin/vclassrooms/add/'.$data['Ecourse']['id'], null, null, false));24 echo $html->para(null, $html->link($html->image($img, array('alt'=>__('Add new', true), 'title'=>__('Add new', true))), '/admin/vclassrooms/add/'.$data['Ecourse']['id'], null, null, false)); 25 25 26 26 … … 40 40 endforeach; 41 41 42 if ( !isset( $historic ) ):42 /* if ( !isset( $historic ) ): 43 43 echo $html->link( 44 44 $html->image('admin/historic.png', array('alt'=>__('Filed classrooms', true), 'title'=>__('Filed classrooms', true))), 45 45 '/admin/ecourses/vclassrooms/'.$data['Ecourse']['id'].'/historic', null, null, false); 46 endif; 46 endif; */ 47 47 ?>
