29 lines
447 B
PHP
29 lines
447 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: lucas
|
|
* Date: 27/02/18
|
|
* Time: 16:19
|
|
*/
|
|
|
|
namespace api\module\professor;
|
|
|
|
|
|
use database\core\Repo;
|
|
use database\repo\professor;
|
|
|
|
class statsController{
|
|
public static function get($args){
|
|
$idProf = 0;
|
|
extract($args);
|
|
|
|
//get data from the database
|
|
|
|
/** @var professor $profRepo */
|
|
$profRepo = Repo::getRepo("professor");
|
|
$VH = $profRepo->getWithVH($idProf);
|
|
|
|
return ["data" => $VH];
|
|
}
|
|
|
|
} |