4. srv / bd / pasatiempoConsultaNoEliminados.php

1<?php
2
3require_once __DIR__ . "/../../lib/php/select.php";
4require_once __DIR__ . "/Bd.php";
5require_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 */
15function pasatiempoConsultaNoEliminados()
16{
17 return select(
18 pdo: Bd::pdo(),
19 from: PASATIEMPO,
20 where: [PAS_ELIMINADO => 0],
21 orderBy: PAS_NOMBRE
22 );
23}
24
skip_previous skip_next