MVP algorithm for stundenplan gruppierung (testing)

This commit is contained in:
SimonGschnell
2024-06-07 15:06:28 +02:00
parent 25d284389a
commit 70b0b3fae7
4 changed files with 117 additions and 24 deletions
+13
View File
@@ -141,6 +141,19 @@ class FHCAPI_Controller extends Auth_Controller
$this->returnObj['meta'][$key] = $value;
}
/**
* @param string $key
* @return mixed
*/
public function getMeta($key)
{
if (!isset($this->returnObj['meta']))
return null;
if (!isset($this->returnObj['meta'][$key]))
return null;
return $this->returnObj['meta'][$key];
}
/**
* @param string $status
* @return void