mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-02 04:39:28 +00:00
d178164130
- Removed public method setNavigationMenuArrayJson from controller organisation/Reihungstest.php - Removed JS include public/js/reihungstest/reihungstest.js from views/organisation/reihungstest/reihungstest.php - Removed JS public/js/reihungstest/reihungstest.js
44 lines
753 B
PHP
44 lines
753 B
PHP
<?php
|
|
|
|
if (! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
/**
|
|
* Overview of Placementtests
|
|
*/
|
|
class Reihungstest extends Auth_Controller
|
|
{
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct(
|
|
array(
|
|
'index' => 'infocenter:r'
|
|
)
|
|
);
|
|
|
|
$this->load->library('WidgetLib');
|
|
$this->loadPhrases(
|
|
array(
|
|
'global',
|
|
'ui',
|
|
'filter'
|
|
)
|
|
);
|
|
|
|
$this->setControllerId(); // sets the controller id
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------------------------------------------
|
|
// Public methods
|
|
|
|
/**
|
|
* Main page of the InfoCenter tool
|
|
*/
|
|
public function index()
|
|
{
|
|
$this->load->view('organisation/reihungstest/reihungstest.php');
|
|
}
|
|
}
|