. */ if (! defined('BASEPATH')) exit('No direct script access allowed'); class Studgang extends FHCAPI_Controller { /** * Object initialization */ public function __construct() { parent::__construct([ 'getStudiengangInfo'=> self::PERM_LOGGED, ]); $this->load->model('organisation/Studiengang_model', 'StudiengangModel'); // Loads phrases system $this->loadPhrases([ 'global' ]); } //------------------------------------------------------------------------------------------------------------------ // Public methods public function getStudiengangInfo(){ // fetches the Studiengang Information which is used next the the news $studiengangInfo = $this->StudiengangModel->getStudiengangInfoForNews(); $studiengangInfo= $this->getDataOrTerminateWithError($studiengangInfo); $this->terminateWithSuccess($studiengangInfo); } //------------------------------------------------------------------------------------------------------------------ // Private methods }