Ejemplo n.º 1
0
 /**
  * Custom action after section has been moved in AJAX mode
  *
  * Used in course/rest.php
  *
  * This function calls function callback_FORMATNAME_ajax_section_move() if it exists
  *
  * @return array This will be passed in ajax respose
  */
 function ajax_section_move()
 {
     $featurefunction = 'callback_' . $this->format . '_ajax_section_move';
     if (function_exists($featurefunction) && ($course = $this->get_course())) {
         return $featurefunction($course);
     } else {
         return parent::ajax_section_move();
     }
 }