Пример #1
0
 public function genTechLink()
 {
     global $bdd;
     foreach (Technologie::Technologies() as $row) {
         $req = "INSERT INTO UNITE_DEPEND_DE(idUnite, idTech) VALUES ('" . $this->idUnite . "', '" . $row['idTechnologie'] . "')";
         $req = $bdd->exec($req);
     }
 }
Пример #2
0
 public function genUpgradeLink()
 {
     global $bdd;
     foreach (Technologie::Technologies() as $row) {
         $req = "INSERT INTO UPGRADE_DEPEND(idBatiment, idTech) VALUES ('" . $this->idBatiment . "', '" . $row['idTech'] . "')";
         $req = $bdd->exec($req);
     }
 }
Пример #3
0
<?php

include_once './modele/Technologie.php';
include_once './modele/joueur.php';
include_once './modele/authentification.php';
include_once './modele/ressource.php';
if (estAuthentifier()) {
    global $currentJoueur;
    $tc = $currentJoueur->getTechLink();
    $titre = "Recherches Technologiques";
    $tech1 = Technologie::Technologies();
    $techConnues = array();
    $techInconnues = array();
    foreach ($tech1 as $t) {
        $b = false;
        foreach ($tc as $m) {
            if ($t->getIdTech() == $m[0]) {
                $b = true;
            }
        }
        $resUtilisee = $t->getRessourcesLink();
        if ($b) {
            array_push($techConnues, $t);
        } else {
            array_push($techInconnues, array($t, $resUtilisee));
        }
    }
} else {
    retourEnTerresConnues();
}
include_once './vue/Technologie.php';