示例#1
0
 public function show_content()
 {
     header('Content-Type: text/html; charset=utf-8');
     global $display;
     $path_id = Url::get('path_id');
     $current_part = Lessons::get_item($path_id);
     $html = "";
     $html .= $current_part['content'];
     echo $html;
     exit;
 }