/**
  * Reorder a plugin
  *
  * @param   integer  $access  Access level to set
  * @return  void
  */
 public function reorder($inc = 1)
 {
     if (!$this->course->access('manage', 'offering')) {
         return $this->panel();
     }
     $alias = Request::getVar('section', '');
     $row = new \Components\Forum\Tables\Section($this->database);
     if ($row->loadByAlias($alias, $this->offering->get('id'), 'course')) {
         $row->move($inc, 'scope=' . $this->database->Quote($row->scope) . ' AND scope_id=' . $this->database->Quote($row->scope_id));
         $row->reorder('scope=' . $this->database->Quote($row->scope) . ' AND scope_id=' . $this->database->Quote($row->scope_id));
     }
     App::redirect(Route::url($this->base . '&unit=manage'));
 }