You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.5 KiB
57 lines
1.5 KiB
<?php
|
|
|
|
namespace model;
|
|
|
|
use gateway\TranslationGateway;
|
|
use gateway\UserGateway;
|
|
use gateway\VocabularyGateway;
|
|
use gateway\VocabularyListGateway;
|
|
|
|
class MdlTeacher extends AbsModel
|
|
{
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct("teacher");
|
|
}
|
|
|
|
public function getAll():array{
|
|
$gtw = new VocabularyListGateway();
|
|
return $gtw->findAll();
|
|
}
|
|
|
|
public function getAllStudent():array {
|
|
$gtw = new UserGateway();
|
|
return $gtw->findAll();
|
|
}
|
|
|
|
public function getVocabByName(string $name):array{
|
|
$gtw = new VocabularyListGateway();
|
|
$res = $gtw->findByName($name);
|
|
return $res;
|
|
}
|
|
|
|
public function RemoveVocById(int $id):void{
|
|
$gtw = new VocabularyListGateway();
|
|
$res = $gtw->remove($id);
|
|
}
|
|
|
|
public function addVocabList(int $userID, string $name, string $image, array $words): void {
|
|
$vocabGtw = new VocabularyListGateway();
|
|
$vocabID = $vocabGtw->add(array($name, $image, $userID));
|
|
$transGtw = new TranslationGateway();
|
|
foreach ($words as $word) {
|
|
var_dump($word[0]." ".$word[1]);
|
|
$transGtw->add(array($word[0], $word[1], $vocabID));
|
|
}
|
|
}
|
|
|
|
public function is(string $login, array $roles)
|
|
{
|
|
$gtw = new UserGateway();
|
|
$user = $gtw->findUserByEmail($login);
|
|
|
|
if ($user->getRoles() == $roles && in_array('teacher', $user->getRoles())) return $user;
|
|
else return false;
|
|
}
|
|
} |