/**
  * Contructor.
  *
  * @param string $id An identifier for this table (optional).
  * @retrn none
  */
 function enrolreport($id = '')
 {
     parent::report($id);
     $this->type = 'class';
     $this->title = 'Enrolment Report';
     $this->fileformats = array('pdf' => 'PDF', 'csv' => 'CSV', 'excel' => 'Excel');
 }
 /**
  * Contructor.
  *
  * @param string $id An identifier for this table (optional).
  * @retrn none
  */
 function curriculareport($id = '')
 {
     parent::report($id);
     $this->type = 'class';
     $this->title = get_string('reportcurricula', 'block_curr_admin');
     $this->fileformats = array('pdf' => 'PDF', 'csv' => 'CSV', 'excel' => 'Excel');
 }
 /**
  * Contructor.
  *
  * @param string $id An identifier for this table (optional).
  * @retrn none
  */
 function reclocreport($id = '')
 {
     parent::report($id);
     $this->loc = '';
     $this->usrid = 0;
     $this->type = 'recloc';
     $this->fileformats = array('pdf' => 'PDF', 'csv' => 'CSV', 'excel' => 'Excel');
 }
 /**
  * Contructor.
  *
  * @param string $id An identifier for this table (optional).
  * @retrn none
  */
 function induserreport($id = '')
 {
     parent::report($id);
     $this->usrid = 0;
     $this->hideins = false;
     $this->type = 'induser';
     $this->fileformats = array('pdf' => 'PDF', 'csv' => 'CSV', 'excel' => 'Excel');
 }
 /**
  * Contructor.
  *
  * @param string $id An identifier for this table (optional).
  * @retrn none
  */
 function transcriptreport($id = '')
 {
     parent::report($id);
     $this->usrid = 0;
     $this->hideins = false;
     $this->type = 'induser';
     $this->title = get_string('user_transcript', 'block_curr_admin');
     $this->fileformats = array('pdf' => 'PDF', 'csv' => 'CSV', 'excel' => 'Excel');
 }
 /**
  * Contructor.
  *
  * @param string $id An identifier for this table (optional).
  * @retrn none
  */
 function classrosterreport($id = '')
 {
     parent::report($id);
     $this->clsid = 0;
     $this->hideins = false;
     $this->hidestu = false;
     $this->hidesyl = false;
     $this->type = 'classroster';
     $this->fileformats = array('pdf' => 'PDF', 'csv' => 'CSV', 'excel' => 'Excel');
 }
 /**
  * Contructor.
  *
  * @param string $id An identifier for this table (optional).
  * @retrn none
  */
 function nonqualreport($id = '')
 {
     parent::report($id);
     $this->type = 'nonqual';
     $this->fileformats = array('pdf' => 'PDF', 'csv' => 'CSV', 'excel' => 'Excel');
 }