mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-23 09:52:22 +00:00
E-Mail Reminder für Wiederholer sollen an die FH Adresse des Studierenden geschickt werden
This commit is contained in:
@@ -82,4 +82,14 @@ class Student_model extends DB_Model
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the FH-Email for a student (not the private kontakt emailt)
|
||||
* @param $student_uid
|
||||
* @return string
|
||||
*/
|
||||
public function getEmailFH($student_uid)
|
||||
{
|
||||
return $student_uid . '@' . DOMAIN;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -98,7 +98,7 @@ class Studierendenantrag_model extends DB_Model
|
||||
);
|
||||
|
||||
if ($types && is_array($types)) {
|
||||
$this->db->where_in('typ' => $types);
|
||||
$this->db->where_in('typ', $types);
|
||||
}
|
||||
|
||||
$this->addOrder('datum', 'DESC');
|
||||
|
||||
Reference in New Issue
Block a user