1 | <?php |
2 | |
3 | require_once __DIR__ . "/../../lib/php/select.php"; |
4 | require_once __DIR__ . "/Bd.php"; |
5 | require_once __DIR__ . "/../modelo/TABLA_PASATIEMPO.php"; |
6 | |
7 | /** |
8 | * @return array{ |
9 | * PAS_ID: string, |
10 | * PAS_NOMBRE: string, |
11 | * PAS_MODIFICACION: int, |
12 | * PAS_ELIMINADO: int |
13 | * }[] |
14 | */ |
15 | function pasatiempoConsultaNoEliminados() |
16 | { |
17 | return select( |
18 | pdo: Bd::pdo(), |
19 | from: PASATIEMPO, |
20 | where: [PAS_ELIMINADO => 0], |
21 | orderBy: PAS_NOMBRE |
22 | ); |
23 | } |
24 |