53 lines
765 B
PHP
53 lines
765 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: lucas
|
|
* Date: 15/03/18
|
|
* Time: 11:47
|
|
*/
|
|
|
|
namespace api\module;
|
|
|
|
|
|
use database\core\Repo;
|
|
use database\repo\professor;
|
|
|
|
class departmentController
|
|
{
|
|
|
|
public function put($args){
|
|
$department = 0;
|
|
extract($args);
|
|
|
|
|
|
/** @var professor $prof_repo */
|
|
$prof_repo = Repo::getRepo('professor');
|
|
|
|
|
|
|
|
$deps = $prof_repo->getLinkedDepartments($_SESSION['CAS']['login']);
|
|
|
|
|
|
|
|
if( count($deps) > 0 ){
|
|
|
|
foreach($deps as $dep){
|
|
|
|
if( $dep['idDep'] == $department){
|
|
|
|
$_SESSION['AvailableDepartments'] = $deps;
|
|
$_SESSION['CurrentDatabase'] = $dep['dbName'];
|
|
$_SESSION['CurrentDepartmentId'] = $dep['idDep'];
|
|
|
|
return ['switched' => true];
|
|
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
return ['switched' => false];
|
|
|
|
}
|
|
|
|
} |