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.
82 righe
1.6 KiB
82 righe
1.6 KiB
<? |
|
Class AlboCommissione extends Elenchi { |
|
|
|
public static function refPartecipante() { |
|
return "utente"; |
|
} |
|
|
|
public static function getDirectory() { |
|
return "albi_commissione"; |
|
} |
|
|
|
public static function getMainTable() { |
|
return "b_albo_commissione"; |
|
} |
|
|
|
public static function getModulo() { |
|
return "albi_commissione"; |
|
} |
|
|
|
public static function getOeTable() { |
|
return "r_partecipanti_commissione"; |
|
} |
|
|
|
public static function getRichiesteTable() |
|
{ |
|
return "b_albo_commissione_richieste"; |
|
} |
|
|
|
public static function getFormTable() |
|
{ |
|
return "r_albo_commissione_form"; |
|
} |
|
|
|
public static function getCpvTable() |
|
{ |
|
return "r_cpv_commissione"; |
|
} |
|
|
|
public static function getChiarimentiTable() |
|
{ |
|
return "b_albo_commissione_chiarimenti"; |
|
} |
|
|
|
public static function getSopralluogoTable() |
|
{ |
|
return null; |
|
} |
|
|
|
public static function getBusteTable() |
|
{ |
|
return "b_albo_commissione_buste"; |
|
} |
|
|
|
public static function tipologieNoRevisione() |
|
{ |
|
return ["A"]; |
|
} |
|
|
|
public static function tipologieObbligoScadenza() |
|
{ |
|
return []; |
|
} |
|
|
|
|
|
public static function tipologieShowPartecipanti() |
|
{ |
|
return []; |
|
} |
|
|
|
public static function getTipologie($edit = false) { |
|
$return = ["A"=>"Albo commissione"]; |
|
return $return; |
|
} |
|
|
|
public static function init($codice) { |
|
$return = parent::initInstance($codice,"AlboCommissione"); |
|
$return->internalUsers = true; |
|
return $return; |
|
} |
|
|
|
} |
|
?>
|