Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
19 righe
797 B
19 righe
797 B
<? |
|
$return = false; |
|
if (!empty($this->elemento)) { |
|
$round = $this->db->go("SELECT b_gare_round.codice, b_gare_round.codice_gara |
|
FROM b_gare_round |
|
WHERE b_gare_round.codice = :codice",[":codice"=>$this->elemento]); |
|
if ($round->rowCount() > 0) { |
|
$round = $round->fetch(PDO::FETCH_ASSOC); |
|
$gara = gara::init($round["codice_gara"],$round["codice"],$valutatore); |
|
if (!empty($gara)) { |
|
$return = true; |
|
$this->oggetto = $gara->info["oggetto"]; |
|
$this->lock = $gara->checkLock($this->tipologia); |
|
$this->viewPath = "/backend/gare/open/show.php?codice={$gara->info["codice"]}&codice_round={$gara->round["codice"]}&valutazione=true"; |
|
if ($returnObject) { $return = $gara; } |
|
} |
|
} |
|
} |
|
?>
|
|
|