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.
29 lines
676 B
29 lines
676 B
<?php
|
|
|
|
namespace model;
|
|
use PDO;
|
|
|
|
class GameGateway
|
|
{
|
|
private Connection $con;
|
|
|
|
function __construct(Connection $con) {
|
|
$this->con = $con;
|
|
}
|
|
public static function getGames() : array
|
|
{
|
|
// TODO: implémenter requête SQL
|
|
return array(
|
|
0 => ["Qui-est-ce ?", "Le qui est-ce...."],
|
|
1 => ["Kahoot", "Le Kahoot permet..."]
|
|
);
|
|
}
|
|
|
|
public function getGameByCode(int $code) : array {
|
|
$query = 'SELECT * FROM Partie WHERE codeInvitation=:id';
|
|
$this->con->executeQuery($query,array(
|
|
':id' => [$code, PDO::PARAM_INT]
|
|
));
|
|
return $this->con->getResults();
|
|
}
|
|
} |