Changeset 352 for trunk/app/views/ecourses/admin_vclassrooms.ctp
- Timestamp:
- 03/28/08 10:03:54 (10 months ago)
- Files:
-
- 1 modified
-
trunk/app/views/ecourses/admin_vclassrooms.ctp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/views/ecourses/admin_vclassrooms.ctp
r350 r352 6 6 echo $html->getCrumbs(' / '); 7 7 8 echo $html->div('title_section', 'Virtual clasrooms on ' . $data['Ecourse']['title'] . ' e-Course');8 $str = 'Virtual clasrooms on ' . $data['Ecourse']['title'] . ' e-Course'; 9 9 10 if ( isset( $historic ) ) 11 { 12 $str .= ' (filed)'; 13 } 14 15 echo $html->div('title_section', $str); 10 16 11 17 echo $html->para(null, $html->link($html->image('static/vgroups.gif', array("alt"=>"Add new group", "title"=>"Add new group")), '/admin/vclassrooms/add/'.$data['Ecourse']['id'], null, null, false)); … … 25 31 $tmp .= $html->div('butonright', $gags->confirmDel($val['id'], 'Vclassroom')); 26 32 27 echo $html->div('spaced', $tmp); 33 echo $html->div('grayblock', $tmp); 34 } 35 36 if ( !isset( $historic ) ) 37 { 38 echo $html->link( 39 $html->image('admin/historic.png', array('alt'=>'Filed classrooms', 'title'=>'Filed classrooms')), 40 '/admin/ecourses/vclassrooms/'.$data['Ecourse']['id'].'/historic', null, null, false); 28 41 } 29 42 ?>
