File manager - Edit - /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion1/Fraccion9/Fraccion5.tar
Back
F5nn-20251212174506.php 0000644 00000004372 15117323755 0007465 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso ñ)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso ñ) La estadística de las solicitudes de información pública atendidas y visitas al sistema de consulta</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/nn/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5t-20251212174610.php 0000644 00000004127 15117323755 0007307 0 ustar 00 <?php function mostrarTablaDocumentos($ruta, $titulo) { echo "<h2>$titulo</h2>"; echo "<table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { echo "<tr><td colspan='2'>No se encontró la carpeta.</td></tr>"; } echo "</tbody></table>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso t)</title> <link rel="stylesheet" href="../menu.css"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso t) Las concesiones, licencias, permisos o autorizaciones otorgadas de los últimos tres años</h2> <?php mostrarTablaDocumentos("../Transparencia/Fraccion5/t/", "Documentos disponibles"); ?> </main> </body> </html> F5s.php 0000644 00000010575 15117323755 0005733 0 ustar 00 <?php function mostrarTablaDocumentos($ruta, $titulo) { echo "<h2>$titulo</h2>"; echo "<table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { echo "<tr><td colspan='2'>No se encontró la carpeta.</td></tr>"; } echo "</tbody></table>"; } function mostrarFacturasPorMes($ruta_base) { $meses = ['enero','febrero','marzo','abril','mayo','junio','julio','agosto','septiembre','octubre','noviembre','diciembre']; echo "<h2>Facturas por Mes</h2><div class='tabs-meses'>"; foreach ($meses as $i => $mes) { echo "<button class='tab-mes" . ($i === 0 ? " active" : "") . "' data-tab='$mes'>" . ucfirst($mes) . "</button>"; } echo "</div>"; foreach ($meses as $i => $mes) { $ruta = "$ruta_base/$mes/"; echo "<div class='mes-content' id='$mes' style='" . ($i === 0 ? 'display:block;' : 'display:none;') . "'> <table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos en esta pestaña.</td></tr>"; } else { echo "<tr><td colspan='2'>Carpeta no encontrada.</td></tr>"; } echo "</tbody></table></div>"; } } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso s)</title> <link rel="stylesheet" href="../menu.csscss"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } .tab-mes { padding: 8px 16px; margin: 5px 5px 10px 0; background-color: #e0e0e0; border: none; cursor: pointer; } .tab-mes.active { background-color: #2b3e5c; color: white; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso s) Gastos de representación, viáticos y viajes oficiales</h2> <?php mostrarTablaDocumentos("../Transparencia/Fraccion5/s/", "Documentos Generales"); mostrarTablaDocumentos("../Transparencia/Fraccion5/s/descripciones/", "Descripciones"); mostrarFacturasPorMes("../Transparencia/Fraccion5/s/facturas"); ?> </main> <script> document.querySelectorAll('.tab-mes').forEach(btn => { btn.addEventListener('click', () => { document.querySelectorAll('.tab-mes').forEach(b => b.classList.remove('active')); document.querySelectorAll('.mes-content').forEach(c => c.style.display = 'none'); btn.classList.add('active'); document.getElementById(btn.dataset.tab).style.display = 'block'; }); }); </script> </body> </html> F5v-20251212184308.php 0000644 00000004207 15117323755 0007315 0 ustar 00 <?php function mostrarTablaDocumentos($ruta, $titulo) { echo "<h2>$titulo</h2>"; echo "<table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { echo "<tr><td colspan='2'>No se encontró la carpeta.</td></tr>"; } echo "</tbody></table>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso v)</title> <link rel="stylesheet" href="../menu.css"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso v) Las pólizas de los cheques expedidos</h2> <?php mostrarTablaDocumentos("../Transparencia/Fraccion5/v/", "Documentos disponibles"); mostrarTablaDocumentos("../Transparencia/Fraccion5/v/antiguo/", "Documentos Antiguos"); ?> </main> </body> </html> F5w.php 0000644 00000004474 15117323755 0005740 0 ustar 00 <?php function mostrarTablaDocumentos($ruta, $titulo) { echo "<h2>$titulo</h2>"; echo "<table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { echo "<tr><td colspan='2'>No se encontró la carpeta.</td></tr>"; } echo "</tbody></table>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso w)</title> <link rel="stylesheet" href="../menu.css"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso w) El estado de la deuda pública del sujeto obligado, donde se señale cuando menos responsable de la autorización, fecha de contratación, monto del crédito, tasa de interés, monto total amortizable, plazo de vencimiento, institución crediticia, objeto de aplicación y avance de aplicación de cada deuda contratada</h2> <?php mostrarTablaDocumentos("../Transparencia/Fraccion5/w/", "Documentos disponibles"); ?> </main> </body> </html> F5e-20251212174505-20251213164354.php 0000644 00000004340 15117323755 0010654 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso e)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso e) El organigrama y plantilla del personal del sujeto obligado</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/e/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5y.php 0000644 00000004306 15117323755 0005734 0 ustar 00 <?php function mostrarTablaDocumentos($ruta, $titulo) { echo "<h2>$titulo</h2>"; echo "<table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { echo "<tr><td colspan='2'>No se encontró la carpeta.</td></tr>"; } echo "</tbody></table>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso y)</title> <link rel="stylesheet" href="../menu.css"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso y) La información en versión pública de las declaraciones patrimoniales de los servidores públicos que así lo determinen, en los sistemas habilitados para ello, de acuerdo a la normatividad aplicable</h2> <?php mostrarTablaDocumentos("../Transparencia/Fraccion5/y/", "Documentos disponibles"); ?> </main> </body> </html> F5g.php 0000644 00000007465 15117323755 0005723 0 ustar 00 <?php function obtenerArchivosPorMes($ruta, $mes) { $archivos = []; if (is_dir($ruta)) { foreach (scandir($ruta) as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== '.' && $archivo !== '..' && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { if (stripos($archivo, $mes) !== false) { $archivos[] = [ 'nombre' => ucwords(str_replace(['-', '_'], ' ', pathinfo($archivo, PATHINFO_FILENAME))), 'ruta' => "$ruta/$archivo" ]; } } } } return $archivos; } function generarPestanas($anio, $basePath) { $meses = ["Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre"]; echo "<div class='anio'> <h2>Año $anio</h2> <div class='tabs'>"; foreach ($meses as $index => $mes) { $active = $index === 0 ? 'active' : ''; echo "<button class='tab-btn $active' data-tab='$anio-$mes'>$mes</button>"; } echo "</div>"; foreach ($meses as $index => $mes) { $active = $index === 0 ? 'active' : ''; echo "<div class='tab-content $active' id='$anio-$mes'> <table> <thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; $archivos = obtenerArchivosPorMes("../Transparencia/Fraccion5/g/$anio", $mes); if (count($archivos) === 0) { echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { foreach ($archivos as $archivo) { echo "<tr><td>" . htmlspecialchars($archivo['nombre']) . "</td><td><a href='" . $archivo['ruta'] . "' target='_blank'>Ver documento</a></td></tr>"; } } echo "</tbody></table></div>"; } echo "</div>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso g)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1200px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } .tabs { margin-bottom: 10px; } .tab-btn { padding: 10px 20px; margin: 5px 5px 0 0; border: none; background-color: #e0e0e0; cursor: pointer; } .tab-btn.active { background-color: #2b3e5c; color: white; font-weight: bold; } .tab-content { display: none; } .tab-content.active { display: block; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso g) Las nóminas completas del sujeto obligado</h2> <?php for ($anio = 2019; $anio <= 2027; $anio++) { generarPestanas($anio, "../Transparencia/Fraccion5/g"); } ?> </main> <script> const tabs = document.querySelectorAll('.tab-btn'); const contents = document.querySelectorAll('.tab-content'); tabs.forEach(btn => { btn.addEventListener('click', () => { const tabGroup = btn.dataset.tab.split('-')[0]; document.querySelectorAll(`.tab-btn[data-tab^="${tabGroup}-"]`).forEach(el => el.classList.remove('active')); document.querySelectorAll(`.tab-content[id^="${tabGroup}-"]`).forEach(el => el.classList.remove('active')); btn.classList.add('active'); document.getElementById(btn.dataset.tab).classList.add('active'); }); }); </script> </body> </html> F5m-20251212174457.php 0000644 00000004337 15117323755 0007314 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso m)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso m) Listado de personas que usan recursos públicos o ejercen actos de autoridad</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/m/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5x.php 0000644 00000004311 15117323755 0005727 0 ustar 00 <?php function mostrarTablaDocumentos($ruta, $titulo) { echo "<h2>$titulo</h2>"; echo "<table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { echo "<tr><td colspan='2'>No se encontró la carpeta.</td></tr>"; } echo "</tbody></table>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso x)</title> <link rel="stylesheet" href="../menu.css"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso x) Los estados de cuenta bancarios que expiden las instituciones financieras, número de cuentas bancarias, estados financieros, cuentas de fideicomisos e inversiones, de cuando menos los últimos seis meses</h2> <?php mostrarTablaDocumentos("../Transparencia/Fraccion5/x/", "Documentos disponibles"); ?> </main> </body> </html> F5x-20251212174459-20251213164543.php 0000644 00000004311 15117323755 0010705 0 ustar 00 <?php function mostrarTablaDocumentos($ruta, $titulo) { echo "<h2>$titulo</h2>"; echo "<table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { echo "<tr><td colspan='2'>No se encontró la carpeta.</td></tr>"; } echo "</tbody></table>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso x)</title> <link rel="stylesheet" href="../menu.css"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso x) Los estados de cuenta bancarios que expiden las instituciones financieras, número de cuentas bancarias, estados financieros, cuentas de fideicomisos e inversiones, de cuando menos los últimos seis meses</h2> <?php mostrarTablaDocumentos("../Transparencia/Fraccion5/x/", "Documentos disponibles"); ?> </main> </body> </html> F5f-20251212174506-20251213164414.php 0000644 00000004413 15117323755 0010654 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso f)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso f) Las remuneraciones mensuales por puesto, incluidas todas las prestaciones, estímulos o compensaciones</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/f/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5q-20251212174457-20251213164542.php 0000644 00000004334 15117323755 0010700 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso q)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso q) Información de cancelaciones o condonaciones fiscales, montos y exenciones</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/q/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5x-20251212174459.php 0000644 00000004311 15117323755 0007321 0 ustar 00 <?php function mostrarTablaDocumentos($ruta, $titulo) { echo "<h2>$titulo</h2>"; echo "<table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { echo "<tr><td colspan='2'>No se encontró la carpeta.</td></tr>"; } echo "</tbody></table>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso x)</title> <link rel="stylesheet" href="../menu.css"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso x) Los estados de cuenta bancarios que expiden las instituciones financieras, número de cuentas bancarias, estados financieros, cuentas de fideicomisos e inversiones, de cuando menos los últimos seis meses</h2> <?php mostrarTablaDocumentos("../Transparencia/Fraccion5/x/", "Documentos disponibles"); ?> </main> </body> </html> F5u-20251212174611.php 0000644 00000004131 15117323755 0007304 0 ustar 00 <?php function mostrarTablaDocumentos($ruta, $titulo) { echo "<h2>$titulo</h2>"; echo "<table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { echo "<tr><td colspan='2'>No se encontró la carpeta.</td></tr>"; } echo "</tbody></table>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso u)</title> <link rel="stylesheet" href="../menu.css"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso u) Los decretos y expedientes relativos a las expropiaciones que realicen por utilidad pública</h2> <?php mostrarTablaDocumentos("../Transparencia/Fraccion5/u/", "Documentos disponibles"); ?> </main> </body> </html> F5l.php 0000644 00000005316 15117323755 0005721 0 ustar 00 <?php function obtenerArchivos($ruta) { $archivos = []; if (is_dir($ruta)) { foreach (scandir($ruta) as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== '.' && $archivo !== '..' && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $archivos[] = [ 'nombre' => ucwords(str_replace(['-', '_'], ' ', pathinfo($archivo, PATHINFO_FILENAME))), 'ruta' => "$ruta/$archivo" ]; } } } return $archivos; } function mostrarTabla($titulo, $archivos) { echo "<h2>$titulo</h2> <table> <thead><tr><th>Documento</th><th>Enlace</th></tr></thead> <tbody>"; if (count($archivos) === 0) { echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { foreach ($archivos as $archivo) { echo "<tr><td>" . htmlspecialchars($archivo['nombre']) . "</td><td><a href='" . $archivo['ruta'] . "' target='_blank'>Ver documento</a></td></tr>"; } } echo "</tbody></table>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso l)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fraccion V - Informacion financiera, patrimonial y administrativa</h1> <h2>Inciso l) Subsidios recibidos y otorgados, padrones y montos pagados</h2> <?php $base = "../Transparencia/Fraccion5/l"; // Mostrar tabla de Montos efectivamente pagados // $montos = obtenerArchivos("$base/Montos efectivamente pagados"); // mostrarTabla("Montos efectivamente pagados", $montos); // Mostrar Padrones por año $padrones_path = "$base/Padrones"; for ($anio = 2019; $anio <= 2025; $anio++) { $padrones = obtenerArchivos("$padrones_path/$anio"); mostrarTabla("Padrones $anio", $padrones); } ?> </main> </body> </html> F5q.php 0000644 00000004334 15117323755 0005725 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso q)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso q) Información de cancelaciones o condonaciones fiscales, montos y exenciones</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/q/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5w-20251212174457.php 0000644 00000004474 15117323755 0007330 0 ustar 00 <?php function mostrarTablaDocumentos($ruta, $titulo) { echo "<h2>$titulo</h2>"; echo "<table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { echo "<tr><td colspan='2'>No se encontró la carpeta.</td></tr>"; } echo "</tbody></table>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso w)</title> <link rel="stylesheet" href="../menu.css"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso w) El estado de la deuda pública del sujeto obligado, donde se señale cuando menos responsable de la autorización, fecha de contratación, monto del crédito, tasa de interés, monto total amortizable, plazo de vencimiento, institución crediticia, objeto de aplicación y avance de aplicación de cada deuda contratada</h2> <?php mostrarTablaDocumentos("../Transparencia/Fraccion5/w/", "Documentos disponibles"); ?> </main> </body> </html> F5p-20251212174500-20251213164414.php 0000644 00000004326 15117323755 0010663 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso p)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso p) Información sobre concursos por invitación y licitaciones públicas</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/p/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5m-20251212174457-20251213164543.php 0000644 00000004337 15117323755 0010700 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso m)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso m) Listado de personas que usan recursos públicos o ejercen actos de autoridad</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/m/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5d.php 0000644 00000004376 15117323755 0005716 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso d)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso d) Las convocatorias a concursos para ocupar cargos públicos y los resultados de los mismos</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/d/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5h-20251212174506.php 0000644 00000004317 15117323755 0007300 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso h)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso h) El listado de jubilados y pensionados y el monto que reciben</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/h/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5nn.php 0000644 00000004372 15117323755 0006102 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso ñ)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso ñ) La estadística de las solicitudes de información pública atendidas y visitas al sistema de consulta</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/nn/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5p-20251212174500.php 0000644 00000004326 15117323755 0007302 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso p)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso p) Información sobre concursos por invitación y licitaciones públicas</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/p/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5i-20251212174502-20251213164505.php 0000644 00000010106 15117323755 0010650 0 ustar 00 <?php function obtenerArchivos($ruta) { $archivos = []; if (is_dir($ruta)) { foreach (scandir($ruta) as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== '.' && $archivo !== '..' && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $archivos[] = [ 'nombre' => ucwords(str_replace(['-', '_'], ' ', pathinfo($archivo, PATHINFO_FILENAME))), 'ruta' => "$ruta/$archivo" ]; } } } return $archivos; } function generarPestanasPorAnio($basePath, $inicio, $fin) { echo "<div class='tabs'>"; for ($anio = $inicio; $anio <= $fin; $anio++) { $active = $anio === $inicio ? 'active' : ''; echo "<button class='tab-btn $active' data-tab='anio-$anio'>$anio</button>"; } echo "</div>"; for ($anio = $inicio; $anio <= $fin; $anio++) { $active = $anio === $inicio ? 'active' : ''; echo "<div class='tab-content $active' id='anio-$anio'> <table> <thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; $archivos = obtenerArchivos("$basePath/$anio"); if (count($archivos) === 0) { echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { foreach ($archivos as $archivo) { echo "<tr><td>" . htmlspecialchars($archivo['nombre']) . "</td><td><a href='" . $archivo['ruta'] . "' target='_blank'>Ver documento</a></td></tr>"; } } echo "</tbody></table></div>"; } } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso i)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1200px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } .tabs { margin-bottom: 10px; } .tab-btn { padding: 10px 20px; margin: 5px 5px 0 0; border: none; background-color: #e0e0e0; cursor: pointer; } .tab-btn.active { background-color: #2b3e5c; color: white; font-weight: bold; } .tab-content { display: none; } .tab-content.active { display: block; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso i) Los estados financieros mensuales</h2> <?php generarPestanasPorAnio("../Transparencia/Fraccion5/i", 2014, 2027); ?> <h2>Histórico</h2> <table> <thead><tr><th>Documento</th><th>Enlace</th></tr></thead> <tbody> <?php $archivosHistorico = obtenerArchivos("../Transparencia/Fraccion5/i/Historico"); if (count($archivosHistorico) === 0) { echo "<tr><td colspan='2'>No hay documentos disponibles en el histórico.</td></tr>"; } else { foreach ($archivosHistorico as $archivo) { echo "<tr><td>" . htmlspecialchars($archivo['nombre']) . "</td><td><a href='" . $archivo['ruta'] . "' target='_blank'>Ver documento</a></td></tr>"; } } ?> </tbody> </table> </main> <script> const tabs = document.querySelectorAll('.tab-btn'); const contents = document.querySelectorAll('.tab-content'); tabs.forEach(btn => { btn.addEventListener('click', () => { const tabGroup = btn.dataset.tab.split('-')[1]; document.querySelectorAll('.tab-btn').forEach(el => el.classList.remove('active')); document.querySelectorAll('.tab-content').forEach(el => el.classList.remove('active')); btn.classList.add('active'); document.getElementById(btn.dataset.tab).classList.add('active'); }); }); </script> </body> </html> F5k-20251212174507-20251213164416.php 0000644 00000004404 15117323755 0010664 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso k)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso k) El contrato de prestación de servicios o por honorarios, y el gasto realizado por concepto de pago de asesorías</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/k/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> Fraccion2/F5s.php 0000644 00000010575 15117323755 0007541 0 ustar 00 <?php function mostrarTablaDocumentos($ruta, $titulo) { echo "<h2>$titulo</h2>"; echo "<table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { echo "<tr><td colspan='2'>No se encontró la carpeta.</td></tr>"; } echo "</tbody></table>"; } function mostrarFacturasPorMes($ruta_base) { $meses = ['enero','febrero','marzo','abril','mayo','junio','julio','agosto','septiembre','octubre','noviembre','diciembre']; echo "<h2>Facturas por Mes</h2><div class='tabs-meses'>"; foreach ($meses as $i => $mes) { echo "<button class='tab-mes" . ($i === 0 ? " active" : "") . "' data-tab='$mes'>" . ucfirst($mes) . "</button>"; } echo "</div>"; foreach ($meses as $i => $mes) { $ruta = "$ruta_base/$mes/"; echo "<div class='mes-content' id='$mes' style='" . ($i === 0 ? 'display:block;' : 'display:none;') . "'> <table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos en esta pestaña.</td></tr>"; } else { echo "<tr><td colspan='2'>Carpeta no encontrada.</td></tr>"; } echo "</tbody></table></div>"; } } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso s)</title> <link rel="stylesheet" href="../menu.csscss"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } .tab-mes { padding: 8px 16px; margin: 5px 5px 10px 0; background-color: #e0e0e0; border: none; cursor: pointer; } .tab-mes.active { background-color: #2b3e5c; color: white; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso s) Gastos de representación, viáticos y viajes oficiales</h2> <?php mostrarTablaDocumentos("../Transparencia/Fraccion5/s/", "Documentos Generales"); mostrarTablaDocumentos("../Transparencia/Fraccion5/s/descripciones/", "Descripciones"); mostrarFacturasPorMes("../Transparencia/Fraccion5/s/facturas"); ?> </main> <script> document.querySelectorAll('.tab-mes').forEach(btn => { btn.addEventListener('click', () => { document.querySelectorAll('.tab-mes').forEach(b => b.classList.remove('active')); document.querySelectorAll('.mes-content').forEach(c => c.style.display = 'none'); btn.classList.add('active'); document.getElementById(btn.dataset.tab).style.display = 'block'; }); }); </script> </body> </html> Fraccion2/F5w.php 0000644 00000004474 15117323755 0007546 0 ustar 00 <?php function mostrarTablaDocumentos($ruta, $titulo) { echo "<h2>$titulo</h2>"; echo "<table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { echo "<tr><td colspan='2'>No se encontró la carpeta.</td></tr>"; } echo "</tbody></table>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso w)</title> <link rel="stylesheet" href="../menu.css"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso w) El estado de la deuda pública del sujeto obligado, donde se señale cuando menos responsable de la autorización, fecha de contratación, monto del crédito, tasa de interés, monto total amortizable, plazo de vencimiento, institución crediticia, objeto de aplicación y avance de aplicación de cada deuda contratada</h2> <?php mostrarTablaDocumentos("../Transparencia/Fraccion5/w/", "Documentos disponibles"); ?> </main> </body> </html> Fraccion2/F5y.php 0000644 00000004306 15117323755 0007542 0 ustar 00 <?php function mostrarTablaDocumentos($ruta, $titulo) { echo "<h2>$titulo</h2>"; echo "<table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { echo "<tr><td colspan='2'>No se encontró la carpeta.</td></tr>"; } echo "</tbody></table>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso y)</title> <link rel="stylesheet" href="../menu.css"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso y) La información en versión pública de las declaraciones patrimoniales de los servidores públicos que así lo determinen, en los sistemas habilitados para ello, de acuerdo a la normatividad aplicable</h2> <?php mostrarTablaDocumentos("../Transparencia/Fraccion5/y/", "Documentos disponibles"); ?> </main> </body> </html> Fraccion2/F5g.php 0000644 00000007465 15117323755 0007531 0 ustar 00 <?php function obtenerArchivosPorMes($ruta, $mes) { $archivos = []; if (is_dir($ruta)) { foreach (scandir($ruta) as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== '.' && $archivo !== '..' && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { if (stripos($archivo, $mes) !== false) { $archivos[] = [ 'nombre' => ucwords(str_replace(['-', '_'], ' ', pathinfo($archivo, PATHINFO_FILENAME))), 'ruta' => "$ruta/$archivo" ]; } } } } return $archivos; } function generarPestanas($anio, $basePath) { $meses = ["Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre"]; echo "<div class='anio'> <h2>Año $anio</h2> <div class='tabs'>"; foreach ($meses as $index => $mes) { $active = $index === 0 ? 'active' : ''; echo "<button class='tab-btn $active' data-tab='$anio-$mes'>$mes</button>"; } echo "</div>"; foreach ($meses as $index => $mes) { $active = $index === 0 ? 'active' : ''; echo "<div class='tab-content $active' id='$anio-$mes'> <table> <thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; $archivos = obtenerArchivosPorMes("../Transparencia/Fraccion5/g/$anio", $mes); if (count($archivos) === 0) { echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { foreach ($archivos as $archivo) { echo "<tr><td>" . htmlspecialchars($archivo['nombre']) . "</td><td><a href='" . $archivo['ruta'] . "' target='_blank'>Ver documento</a></td></tr>"; } } echo "</tbody></table></div>"; } echo "</div>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso g)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1200px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } .tabs { margin-bottom: 10px; } .tab-btn { padding: 10px 20px; margin: 5px 5px 0 0; border: none; background-color: #e0e0e0; cursor: pointer; } .tab-btn.active { background-color: #2b3e5c; color: white; font-weight: bold; } .tab-content { display: none; } .tab-content.active { display: block; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso g) Las nóminas completas del sujeto obligado</h2> <?php for ($anio = 2019; $anio <= 2027; $anio++) { generarPestanas($anio, "../Transparencia/Fraccion5/g"); } ?> </main> <script> const tabs = document.querySelectorAll('.tab-btn'); const contents = document.querySelectorAll('.tab-content'); tabs.forEach(btn => { btn.addEventListener('click', () => { const tabGroup = btn.dataset.tab.split('-')[0]; document.querySelectorAll(`.tab-btn[data-tab^="${tabGroup}-"]`).forEach(el => el.classList.remove('active')); document.querySelectorAll(`.tab-content[id^="${tabGroup}-"]`).forEach(el => el.classList.remove('active')); btn.classList.add('active'); document.getElementById(btn.dataset.tab).classList.add('active'); }); }); </script> </body> </html> Fraccion2/F5x.php 0000644 00000004311 15117323755 0007535 0 ustar 00 <?php function mostrarTablaDocumentos($ruta, $titulo) { echo "<h2>$titulo</h2>"; echo "<table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { echo "<tr><td colspan='2'>No se encontró la carpeta.</td></tr>"; } echo "</tbody></table>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso x)</title> <link rel="stylesheet" href="../menu.css"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso x) Los estados de cuenta bancarios que expiden las instituciones financieras, número de cuentas bancarias, estados financieros, cuentas de fideicomisos e inversiones, de cuando menos los últimos seis meses</h2> <?php mostrarTablaDocumentos("../Transparencia/Fraccion5/x/", "Documentos disponibles"); ?> </main> </body> </html> Fraccion2/F5l.php 0000644 00000005316 15117323755 0007527 0 ustar 00 <?php function obtenerArchivos($ruta) { $archivos = []; if (is_dir($ruta)) { foreach (scandir($ruta) as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== '.' && $archivo !== '..' && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $archivos[] = [ 'nombre' => ucwords(str_replace(['-', '_'], ' ', pathinfo($archivo, PATHINFO_FILENAME))), 'ruta' => "$ruta/$archivo" ]; } } } return $archivos; } function mostrarTabla($titulo, $archivos) { echo "<h2>$titulo</h2> <table> <thead><tr><th>Documento</th><th>Enlace</th></tr></thead> <tbody>"; if (count($archivos) === 0) { echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { foreach ($archivos as $archivo) { echo "<tr><td>" . htmlspecialchars($archivo['nombre']) . "</td><td><a href='" . $archivo['ruta'] . "' target='_blank'>Ver documento</a></td></tr>"; } } echo "</tbody></table>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso l)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fraccion V - Informacion financiera, patrimonial y administrativa</h1> <h2>Inciso l) Subsidios recibidos y otorgados, padrones y montos pagados</h2> <?php $base = "../Transparencia/Fraccion5/l"; // Mostrar tabla de Montos efectivamente pagados // $montos = obtenerArchivos("$base/Montos efectivamente pagados"); // mostrarTabla("Montos efectivamente pagados", $montos); // Mostrar Padrones por año $padrones_path = "$base/Padrones"; for ($anio = 2019; $anio <= 2025; $anio++) { $padrones = obtenerArchivos("$padrones_path/$anio"); mostrarTabla("Padrones $anio", $padrones); } ?> </main> </body> </html> Fraccion2/F5q.php 0000644 00000004334 15117323755 0007533 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso q)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso q) Información de cancelaciones o condonaciones fiscales, montos y exenciones</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/q/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> Fraccion2/F5d.php 0000644 00000004376 15117323755 0007524 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso d)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso d) Las convocatorias a concursos para ocupar cargos públicos y los resultados de los mismos</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/d/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> Fraccion2/F5nn.php 0000644 00000004372 15117323755 0007710 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso ñ)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso ñ) La estadística de las solicitudes de información pública atendidas y visitas al sistema de consulta</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/nn/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> Fraccion2/F5e.php 0000644 00000004340 15117323755 0007514 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso e)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso e) El organigrama y plantilla del personal del sujeto obligado</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/e/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> Fraccion2/F5z.php 0000644 00000004402 15117323755 0007540 0 ustar 00 <?php function mostrarTablaDocumentos($ruta, $titulo) { echo "<h2>$titulo</h2>"; echo "<table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { echo "<tr><td colspan='2'>No se encontró la carpeta.</td></tr>"; } echo "</tbody></table>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso z)</title> <link rel="stylesheet" href="../menu.css"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso z) El registro de los procedimientos de responsabilidad administrativa, con indicación del número de expediente, fecha de ingreso, nombre del denunciante, nombre y cargo del denunciado, causa del procedimiento, estado procesal y, en su caso, la sanción impuesta</h2> <?php mostrarTablaDocumentos("../Transparencia/Fraccion5/z/", "Documentos disponibles"); ?> </main> </body> </html> Fraccion2/F5c.php 0000644 00000004373 15117323755 0007520 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso c)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso c) El presupuesto de egresos anual y, en su caso, el clasificador por objeto del gasto...</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/c/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> Fraccion2/F5m.php 0000644 00000004337 15117323755 0007532 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso m)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso m) Listado de personas que usan recursos públicos o ejercen actos de autoridad</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/m/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> Fraccion2/F5k.php 0000644 00000004404 15117323755 0007523 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso k)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso k) El contrato de prestación de servicios o por honorarios, y el gasto realizado por concepto de pago de asesorías</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/k/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> Fraccion2/F5i.php 0000644 00000010106 15117323755 0007515 0 ustar 00 <?php function obtenerArchivos($ruta) { $archivos = []; if (is_dir($ruta)) { foreach (scandir($ruta) as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== '.' && $archivo !== '..' && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $archivos[] = [ 'nombre' => ucwords(str_replace(['-', '_'], ' ', pathinfo($archivo, PATHINFO_FILENAME))), 'ruta' => "$ruta/$archivo" ]; } } } return $archivos; } function generarPestanasPorAnio($basePath, $inicio, $fin) { echo "<div class='tabs'>"; for ($anio = $inicio; $anio <= $fin; $anio++) { $active = $anio === $inicio ? 'active' : ''; echo "<button class='tab-btn $active' data-tab='anio-$anio'>$anio</button>"; } echo "</div>"; for ($anio = $inicio; $anio <= $fin; $anio++) { $active = $anio === $inicio ? 'active' : ''; echo "<div class='tab-content $active' id='anio-$anio'> <table> <thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; $archivos = obtenerArchivos("$basePath/$anio"); if (count($archivos) === 0) { echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { foreach ($archivos as $archivo) { echo "<tr><td>" . htmlspecialchars($archivo['nombre']) . "</td><td><a href='" . $archivo['ruta'] . "' target='_blank'>Ver documento</a></td></tr>"; } } echo "</tbody></table></div>"; } } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso i)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1200px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } .tabs { margin-bottom: 10px; } .tab-btn { padding: 10px 20px; margin: 5px 5px 0 0; border: none; background-color: #e0e0e0; cursor: pointer; } .tab-btn.active { background-color: #2b3e5c; color: white; font-weight: bold; } .tab-content { display: none; } .tab-content.active { display: block; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso i) Los estados financieros mensuales</h2> <?php generarPestanasPorAnio("../Transparencia/Fraccion5/i", 2014, 2027); ?> <h2>Histórico</h2> <table> <thead><tr><th>Documento</th><th>Enlace</th></tr></thead> <tbody> <?php $archivosHistorico = obtenerArchivos("../Transparencia/Fraccion5/i/Historico"); if (count($archivosHistorico) === 0) { echo "<tr><td colspan='2'>No hay documentos disponibles en el histórico.</td></tr>"; } else { foreach ($archivosHistorico as $archivo) { echo "<tr><td>" . htmlspecialchars($archivo['nombre']) . "</td><td><a href='" . $archivo['ruta'] . "' target='_blank'>Ver documento</a></td></tr>"; } } ?> </tbody> </table> </main> <script> const tabs = document.querySelectorAll('.tab-btn'); const contents = document.querySelectorAll('.tab-content'); tabs.forEach(btn => { btn.addEventListener('click', () => { const tabGroup = btn.dataset.tab.split('-')[1]; document.querySelectorAll('.tab-btn').forEach(el => el.classList.remove('active')); document.querySelectorAll('.tab-content').forEach(el => el.classList.remove('active')); btn.classList.add('active'); document.getElementById(btn.dataset.tab).classList.add('active'); }); }); </script> </body> </html> Fraccion2/F5n.php 0000644 00000004332 15117323755 0007526 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso n)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso n) Cuentas públicas, auditorías y demás informes de gestión financiera</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/n/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> Fraccion2/error_log 0000644 00000034463 15117323755 0010312 0 ustar 00 [08-Dec-2025 08:50:25 UTC] PHP Warning: session_start(): Session cannot be started after headers have already been sent in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/index.php on line 22 [12-Dec-2025 16:33:40 UTC] PHP Warning: session_start(): Session cannot be started after headers have already been sent in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/index.php on line 22 [12-Dec-2025 18:41:46 UTC] PHP Warning: session_start(): Session cannot be started after headers have already been sent in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/index.php on line 22 [12-Dec-2025 18:41:46 UTC] PHP Warning: session_start(): Session cannot be started after headers have already been sent in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/index.php on line 22 [12-Dec-2025 21:28:49 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5e.php on line 58 [12-Dec-2025 21:28:49 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5e.php on line 58 [12-Dec-2025 21:28:49 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5e.php on line 58 [12-Dec-2025 21:28:52 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5z.php on line 45 [12-Dec-2025 21:28:52 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5z.php on line 45 [12-Dec-2025 21:28:52 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5z.php on line 45 [12-Dec-2025 21:28:54 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5a.php on line 58 [12-Dec-2025 21:28:54 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5a.php on line 58 [12-Dec-2025 21:28:54 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5a.php on line 58 [12-Dec-2025 21:29:00 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5f.php on line 58 [12-Dec-2025 21:29:00 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5f.php on line 58 [12-Dec-2025 21:29:00 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5f.php on line 58 [12-Dec-2025 21:29:03 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5g.php on line 74 [12-Dec-2025 21:29:03 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5g.php on line 74 [12-Dec-2025 21:29:03 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5g.php on line 74 [12-Dec-2025 21:29:07 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5d.php on line 58 [12-Dec-2025 21:29:07 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5d.php on line 58 [12-Dec-2025 21:29:07 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5d.php on line 58 [12-Dec-2025 21:29:11 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5n.php on line 49 [12-Dec-2025 21:29:11 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5n.php on line 49 [12-Dec-2025 21:29:11 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5n.php on line 49 [12-Dec-2025 21:29:14 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5h.php on line 49 [12-Dec-2025 21:29:14 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5h.php on line 49 [12-Dec-2025 21:29:14 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5h.php on line 49 [12-Dec-2025 21:29:21 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5nn.php on line 49 [12-Dec-2025 21:29:21 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5nn.php on line 49 [12-Dec-2025 21:29:21 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5nn.php on line 49 [12-Dec-2025 22:37:56 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5k.php on line 49 [12-Dec-2025 22:37:56 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5k.php on line 49 [12-Dec-2025 22:37:56 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5k.php on line 49 [12-Dec-2025 22:38:00 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5y.php on line 45 [12-Dec-2025 22:38:00 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5y.php on line 45 [12-Dec-2025 22:38:00 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5y.php on line 45 [12-Dec-2025 22:38:08 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5l.php on line 81 [12-Dec-2025 22:38:08 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5l.php on line 81 [12-Dec-2025 22:38:08 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5l.php on line 81 [12-Dec-2025 22:38:36 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5b.php on line 58 [12-Dec-2025 22:38:36 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5b.php on line 58 [12-Dec-2025 22:38:36 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5b.php on line 58 [12-Dec-2025 22:40:47 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5c.php on line 58 [12-Dec-2025 22:40:47 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5c.php on line 58 [12-Dec-2025 22:40:47 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5c.php on line 58 [12-Dec-2025 22:40:58 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5r.php on line 49 [12-Dec-2025 22:40:58 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5r.php on line 49 [12-Dec-2025 22:40:58 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5r.php on line 49 [13-Dec-2025 01:15:39 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5i.php on line 68 [13-Dec-2025 01:15:39 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5i.php on line 68 [13-Dec-2025 01:15:39 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5i.php on line 68 [13-Dec-2025 01:15:44 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5q.php on line 49 [13-Dec-2025 01:15:44 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5q.php on line 49 [13-Dec-2025 01:15:44 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5q.php on line 49 [13-Dec-2025 01:15:44 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5j.php on line 49 [13-Dec-2025 01:15:44 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5j.php on line 49 [13-Dec-2025 01:15:44 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5j.php on line 49 [13-Dec-2025 01:15:44 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5x.php on line 45 [13-Dec-2025 01:15:44 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5x.php on line 45 [13-Dec-2025 01:15:44 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5x.php on line 45 [13-Dec-2025 01:15:44 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5p.php on line 49 [13-Dec-2025 01:15:44 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5p.php on line 49 [13-Dec-2025 01:15:44 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5p.php on line 49 [13-Dec-2025 01:16:14 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5m.php on line 49 [13-Dec-2025 01:16:14 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5m.php on line 49 [13-Dec-2025 01:16:14 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5m.php on line 49 [13-Dec-2025 01:16:14 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5w.php on line 45 [13-Dec-2025 01:16:14 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5w.php on line 45 [13-Dec-2025 01:16:14 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5w.php on line 45 Fraccion2/F5b.php 0000644 00000004326 15117323755 0007515 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso b)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso b) Los ingresos extraordinarios recibidos por cualquier concepto...</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/b/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> Fraccion2/F5p.php 0000644 00000004326 15117323755 0007533 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso p)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso p) Información sobre concursos por invitación y licitaciones públicas</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/p/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> Fraccion2/F5v.php 0000644 00000004207 15117323755 0007537 0 ustar 00 <?php function mostrarTablaDocumentos($ruta, $titulo) { echo "<h2>$titulo</h2>"; echo "<table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { echo "<tr><td colspan='2'>No se encontró la carpeta.</td></tr>"; } echo "</tbody></table>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso v)</title> <link rel="stylesheet" href="../menu.css"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso v) Las pólizas de los cheques expedidos</h2> <?php mostrarTablaDocumentos("../Transparencia/Fraccion5/v/", "Documentos disponibles"); mostrarTablaDocumentos("../Transparencia/Fraccion5/v/antiguo/", "Documentos Antiguos"); ?> </main> </body> </html> Fraccion2/F5a.php 0000644 00000004372 15117323755 0007515 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso a)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso a) Las partidas del Presupuesto de Egresos de la Federación y del Presupuesto de Egresos del Estado...</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/a/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> Fraccion2/F5h.php 0000644 00000004317 15117323755 0007523 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso h)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso h) El listado de jubilados y pensionados y el monto que reciben</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/h/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> Fraccion2/error_log-20251212203235. 0000644 00000001470 15117323755 0011733 0 ustar 00 [08-Dec-2025 08:50:25 UTC] PHP Warning: session_start(): Session cannot be started after headers have already been sent in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/index.php on line 22 [12-Dec-2025 16:33:40 UTC] PHP Warning: session_start(): Session cannot be started after headers have already been sent in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/index.php on line 22 [12-Dec-2025 18:41:46 UTC] PHP Warning: session_start(): Session cannot be started after headers have already been sent in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/index.php on line 22 [12-Dec-2025 18:41:46 UTC] PHP Warning: session_start(): Session cannot be started after headers have already been sent in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/index.php on line 22 Fraccion2/F5r.php 0000644 00000004272 15117323755 0007535 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso r)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso r) Inventarios de bienes muebles e inmuebles</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/r/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> Fraccion2/F5j.php 0000644 00000004265 15117323755 0007527 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso j)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso j) Los gastos de comunicación social</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/j/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> Fraccion2/F5f.php 0000644 00000004413 15117323755 0007516 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso f)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso f) Las remuneraciones mensuales por puesto, incluidas todas las prestaciones, estímulos o compensaciones</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/f/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5w-20251212174457-20251213164542.php 0000644 00000004474 15117323755 0010713 0 ustar 00 <?php function mostrarTablaDocumentos($ruta, $titulo) { echo "<h2>$titulo</h2>"; echo "<table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { echo "<tr><td colspan='2'>No se encontró la carpeta.</td></tr>"; } echo "</tbody></table>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso w)</title> <link rel="stylesheet" href="../menu.css"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso w) El estado de la deuda pública del sujeto obligado, donde se señale cuando menos responsable de la autorización, fecha de contratación, monto del crédito, tasa de interés, monto total amortizable, plazo de vencimiento, institución crediticia, objeto de aplicación y avance de aplicación de cada deuda contratada</h2> <?php mostrarTablaDocumentos("../Transparencia/Fraccion5/w/", "Documentos disponibles"); ?> </main> </body> </html> F5b-20251212174503.php 0000644 00000004326 15117323755 0007267 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso b)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso b) Los ingresos extraordinarios recibidos por cualquier concepto...</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/b/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5h-20251212174506-20251213164510.php 0000644 00000004317 15117323755 0010656 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso h)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso h) El listado de jubilados y pensionados y el monto que reciben</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/h/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5e.php 0000644 00000004340 15117323755 0005706 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso e)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso e) El organigrama y plantilla del personal del sujeto obligado</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/e/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5z.php 0000644 00000004402 15117323755 0005732 0 ustar 00 <?php function mostrarTablaDocumentos($ruta, $titulo) { echo "<h2>$titulo</h2>"; echo "<table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { echo "<tr><td colspan='2'>No se encontró la carpeta.</td></tr>"; } echo "</tbody></table>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso z)</title> <link rel="stylesheet" href="../menu.css"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso z) El registro de los procedimientos de responsabilidad administrativa, con indicación del número de expediente, fecha de ingreso, nombre del denunciante, nombre y cargo del denunciado, causa del procedimiento, estado procesal y, en su caso, la sanción impuesta</h2> <?php mostrarTablaDocumentos("../Transparencia/Fraccion5/z/", "Documentos disponibles"); ?> </main> </body> </html> F5c.php 0000644 00000004373 15117323755 0005712 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso c)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso c) El presupuesto de egresos anual y, en su caso, el clasificador por objeto del gasto...</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/c/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5g-20251212174506-20251213164543.php 0000644 00000007465 15117323755 0010672 0 ustar 00 <?php function obtenerArchivosPorMes($ruta, $mes) { $archivos = []; if (is_dir($ruta)) { foreach (scandir($ruta) as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== '.' && $archivo !== '..' && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { if (stripos($archivo, $mes) !== false) { $archivos[] = [ 'nombre' => ucwords(str_replace(['-', '_'], ' ', pathinfo($archivo, PATHINFO_FILENAME))), 'ruta' => "$ruta/$archivo" ]; } } } } return $archivos; } function generarPestanas($anio, $basePath) { $meses = ["Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre"]; echo "<div class='anio'> <h2>Año $anio</h2> <div class='tabs'>"; foreach ($meses as $index => $mes) { $active = $index === 0 ? 'active' : ''; echo "<button class='tab-btn $active' data-tab='$anio-$mes'>$mes</button>"; } echo "</div>"; foreach ($meses as $index => $mes) { $active = $index === 0 ? 'active' : ''; echo "<div class='tab-content $active' id='$anio-$mes'> <table> <thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; $archivos = obtenerArchivosPorMes("../Transparencia/Fraccion5/g/$anio", $mes); if (count($archivos) === 0) { echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { foreach ($archivos as $archivo) { echo "<tr><td>" . htmlspecialchars($archivo['nombre']) . "</td><td><a href='" . $archivo['ruta'] . "' target='_blank'>Ver documento</a></td></tr>"; } } echo "</tbody></table></div>"; } echo "</div>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso g)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1200px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } .tabs { margin-bottom: 10px; } .tab-btn { padding: 10px 20px; margin: 5px 5px 0 0; border: none; background-color: #e0e0e0; cursor: pointer; } .tab-btn.active { background-color: #2b3e5c; color: white; font-weight: bold; } .tab-content { display: none; } .tab-content.active { display: block; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso g) Las nóminas completas del sujeto obligado</h2> <?php for ($anio = 2019; $anio <= 2027; $anio++) { generarPestanas($anio, "../Transparencia/Fraccion5/g"); } ?> </main> <script> const tabs = document.querySelectorAll('.tab-btn'); const contents = document.querySelectorAll('.tab-content'); tabs.forEach(btn => { btn.addEventListener('click', () => { const tabGroup = btn.dataset.tab.split('-')[0]; document.querySelectorAll(`.tab-btn[data-tab^="${tabGroup}-"]`).forEach(el => el.classList.remove('active')); document.querySelectorAll(`.tab-content[id^="${tabGroup}-"]`).forEach(el => el.classList.remove('active')); btn.classList.add('active'); document.getElementById(btn.dataset.tab).classList.add('active'); }); }); </script> </body> </html> F5k-20251212174507.php 0000644 00000004404 15117323755 0007301 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso k)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso k) El contrato de prestación de servicios o por honorarios, y el gasto realizado por concepto de pago de asesorías</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/k/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5q-20251212174457.php 0000644 00000004334 15117323755 0007315 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso q)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso q) Información de cancelaciones o condonaciones fiscales, montos y exenciones</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/q/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5m.php 0000644 00000004337 15117323755 0005724 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso m)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso m) Listado de personas que usan recursos públicos o ejercen actos de autoridad</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/m/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5y-20251212174510.php 0000644 00000004306 15117323755 0007312 0 ustar 00 <?php function mostrarTablaDocumentos($ruta, $titulo) { echo "<h2>$titulo</h2>"; echo "<table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { echo "<tr><td colspan='2'>No se encontró la carpeta.</td></tr>"; } echo "</tbody></table>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso y)</title> <link rel="stylesheet" href="../menu.css"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso y) La información en versión pública de las declaraciones patrimoniales de los servidores públicos que así lo determinen, en los sistemas habilitados para ello, de acuerdo a la normatividad aplicable</h2> <?php mostrarTablaDocumentos("../Transparencia/Fraccion5/y/", "Documentos disponibles"); ?> </main> </body> </html> F5j-20251212174459-20251213164543.php 0000644 00000004265 15117323755 0010677 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso j)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso j) Los gastos de comunicación social</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/j/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5k.php 0000644 00000004404 15117323755 0005715 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso k)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso k) El contrato de prestación de servicios o por honorarios, y el gasto realizado por concepto de pago de asesorías</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/k/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5z-20251212174504.php 0000644 00000004402 15117323755 0007313 0 ustar 00 <?php function mostrarTablaDocumentos($ruta, $titulo) { echo "<h2>$titulo</h2>"; echo "<table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { echo "<tr><td colspan='2'>No se encontró la carpeta.</td></tr>"; } echo "</tbody></table>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso z)</title> <link rel="stylesheet" href="../menu.css"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso z) El registro de los procedimientos de responsabilidad administrativa, con indicación del número de expediente, fecha de ingreso, nombre del denunciante, nombre y cargo del denunciado, causa del procedimiento, estado procesal y, en su caso, la sanción impuesta</h2> <?php mostrarTablaDocumentos("../Transparencia/Fraccion5/z/", "Documentos disponibles"); ?> </main> </body> </html> F5g-20251212174506.php 0000644 00000007465 15117323755 0007306 0 ustar 00 <?php function obtenerArchivosPorMes($ruta, $mes) { $archivos = []; if (is_dir($ruta)) { foreach (scandir($ruta) as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== '.' && $archivo !== '..' && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { if (stripos($archivo, $mes) !== false) { $archivos[] = [ 'nombre' => ucwords(str_replace(['-', '_'], ' ', pathinfo($archivo, PATHINFO_FILENAME))), 'ruta' => "$ruta/$archivo" ]; } } } } return $archivos; } function generarPestanas($anio, $basePath) { $meses = ["Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre"]; echo "<div class='anio'> <h2>Año $anio</h2> <div class='tabs'>"; foreach ($meses as $index => $mes) { $active = $index === 0 ? 'active' : ''; echo "<button class='tab-btn $active' data-tab='$anio-$mes'>$mes</button>"; } echo "</div>"; foreach ($meses as $index => $mes) { $active = $index === 0 ? 'active' : ''; echo "<div class='tab-content $active' id='$anio-$mes'> <table> <thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; $archivos = obtenerArchivosPorMes("../Transparencia/Fraccion5/g/$anio", $mes); if (count($archivos) === 0) { echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { foreach ($archivos as $archivo) { echo "<tr><td>" . htmlspecialchars($archivo['nombre']) . "</td><td><a href='" . $archivo['ruta'] . "' target='_blank'>Ver documento</a></td></tr>"; } } echo "</tbody></table></div>"; } echo "</div>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso g)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1200px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } .tabs { margin-bottom: 10px; } .tab-btn { padding: 10px 20px; margin: 5px 5px 0 0; border: none; background-color: #e0e0e0; cursor: pointer; } .tab-btn.active { background-color: #2b3e5c; color: white; font-weight: bold; } .tab-content { display: none; } .tab-content.active { display: block; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso g) Las nóminas completas del sujeto obligado</h2> <?php for ($anio = 2019; $anio <= 2027; $anio++) { generarPestanas($anio, "../Transparencia/Fraccion5/g"); } ?> </main> <script> const tabs = document.querySelectorAll('.tab-btn'); const contents = document.querySelectorAll('.tab-content'); tabs.forEach(btn => { btn.addEventListener('click', () => { const tabGroup = btn.dataset.tab.split('-')[0]; document.querySelectorAll(`.tab-btn[data-tab^="${tabGroup}-"]`).forEach(el => el.classList.remove('active')); document.querySelectorAll(`.tab-content[id^="${tabGroup}-"]`).forEach(el => el.classList.remove('active')); btn.classList.add('active'); document.getElementById(btn.dataset.tab).classList.add('active'); }); }); </script> </body> </html> F5i.php 0000644 00000010106 15117323755 0005707 0 ustar 00 <?php function obtenerArchivos($ruta) { $archivos = []; if (is_dir($ruta)) { foreach (scandir($ruta) as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== '.' && $archivo !== '..' && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $archivos[] = [ 'nombre' => ucwords(str_replace(['-', '_'], ' ', pathinfo($archivo, PATHINFO_FILENAME))), 'ruta' => "$ruta/$archivo" ]; } } } return $archivos; } function generarPestanasPorAnio($basePath, $inicio, $fin) { echo "<div class='tabs'>"; for ($anio = $inicio; $anio <= $fin; $anio++) { $active = $anio === $inicio ? 'active' : ''; echo "<button class='tab-btn $active' data-tab='anio-$anio'>$anio</button>"; } echo "</div>"; for ($anio = $inicio; $anio <= $fin; $anio++) { $active = $anio === $inicio ? 'active' : ''; echo "<div class='tab-content $active' id='anio-$anio'> <table> <thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; $archivos = obtenerArchivos("$basePath/$anio"); if (count($archivos) === 0) { echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { foreach ($archivos as $archivo) { echo "<tr><td>" . htmlspecialchars($archivo['nombre']) . "</td><td><a href='" . $archivo['ruta'] . "' target='_blank'>Ver documento</a></td></tr>"; } } echo "</tbody></table></div>"; } } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso i)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1200px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } .tabs { margin-bottom: 10px; } .tab-btn { padding: 10px 20px; margin: 5px 5px 0 0; border: none; background-color: #e0e0e0; cursor: pointer; } .tab-btn.active { background-color: #2b3e5c; color: white; font-weight: bold; } .tab-content { display: none; } .tab-content.active { display: block; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso i) Los estados financieros mensuales</h2> <?php generarPestanasPorAnio("../Transparencia/Fraccion5/i", 2014, 2027); ?> <h2>Histórico</h2> <table> <thead><tr><th>Documento</th><th>Enlace</th></tr></thead> <tbody> <?php $archivosHistorico = obtenerArchivos("../Transparencia/Fraccion5/i/Historico"); if (count($archivosHistorico) === 0) { echo "<tr><td colspan='2'>No hay documentos disponibles en el histórico.</td></tr>"; } else { foreach ($archivosHistorico as $archivo) { echo "<tr><td>" . htmlspecialchars($archivo['nombre']) . "</td><td><a href='" . $archivo['ruta'] . "' target='_blank'>Ver documento</a></td></tr>"; } } ?> </tbody> </table> </main> <script> const tabs = document.querySelectorAll('.tab-btn'); const contents = document.querySelectorAll('.tab-content'); tabs.forEach(btn => { btn.addEventListener('click', () => { const tabGroup = btn.dataset.tab.split('-')[1]; document.querySelectorAll('.tab-btn').forEach(el => el.classList.remove('active')); document.querySelectorAll('.tab-content').forEach(el => el.classList.remove('active')); btn.classList.add('active'); document.getElementById(btn.dataset.tab).classList.add('active'); }); }); </script> </body> </html> F5i-20251212174502.php 0000644 00000010106 15117323755 0007266 0 ustar 00 <?php function obtenerArchivos($ruta) { $archivos = []; if (is_dir($ruta)) { foreach (scandir($ruta) as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== '.' && $archivo !== '..' && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $archivos[] = [ 'nombre' => ucwords(str_replace(['-', '_'], ' ', pathinfo($archivo, PATHINFO_FILENAME))), 'ruta' => "$ruta/$archivo" ]; } } } return $archivos; } function generarPestanasPorAnio($basePath, $inicio, $fin) { echo "<div class='tabs'>"; for ($anio = $inicio; $anio <= $fin; $anio++) { $active = $anio === $inicio ? 'active' : ''; echo "<button class='tab-btn $active' data-tab='anio-$anio'>$anio</button>"; } echo "</div>"; for ($anio = $inicio; $anio <= $fin; $anio++) { $active = $anio === $inicio ? 'active' : ''; echo "<div class='tab-content $active' id='anio-$anio'> <table> <thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; $archivos = obtenerArchivos("$basePath/$anio"); if (count($archivos) === 0) { echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { foreach ($archivos as $archivo) { echo "<tr><td>" . htmlspecialchars($archivo['nombre']) . "</td><td><a href='" . $archivo['ruta'] . "' target='_blank'>Ver documento</a></td></tr>"; } } echo "</tbody></table></div>"; } } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso i)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1200px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } .tabs { margin-bottom: 10px; } .tab-btn { padding: 10px 20px; margin: 5px 5px 0 0; border: none; background-color: #e0e0e0; cursor: pointer; } .tab-btn.active { background-color: #2b3e5c; color: white; font-weight: bold; } .tab-content { display: none; } .tab-content.active { display: block; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso i) Los estados financieros mensuales</h2> <?php generarPestanasPorAnio("../Transparencia/Fraccion5/i", 2014, 2027); ?> <h2>Histórico</h2> <table> <thead><tr><th>Documento</th><th>Enlace</th></tr></thead> <tbody> <?php $archivosHistorico = obtenerArchivos("../Transparencia/Fraccion5/i/Historico"); if (count($archivosHistorico) === 0) { echo "<tr><td colspan='2'>No hay documentos disponibles en el histórico.</td></tr>"; } else { foreach ($archivosHistorico as $archivo) { echo "<tr><td>" . htmlspecialchars($archivo['nombre']) . "</td><td><a href='" . $archivo['ruta'] . "' target='_blank'>Ver documento</a></td></tr>"; } } ?> </tbody> </table> </main> <script> const tabs = document.querySelectorAll('.tab-btn'); const contents = document.querySelectorAll('.tab-content'); tabs.forEach(btn => { btn.addEventListener('click', () => { const tabGroup = btn.dataset.tab.split('-')[1]; document.querySelectorAll('.tab-btn').forEach(el => el.classList.remove('active')); document.querySelectorAll('.tab-content').forEach(el => el.classList.remove('active')); btn.classList.add('active'); document.getElementById(btn.dataset.tab).classList.add('active'); }); }); </script> </body> </html> F5y-20251212174510-20251213164416.php 0000644 00000004306 15117323755 0010675 0 ustar 00 <?php function mostrarTablaDocumentos($ruta, $titulo) { echo "<h2>$titulo</h2>"; echo "<table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { echo "<tr><td colspan='2'>No se encontró la carpeta.</td></tr>"; } echo "</tbody></table>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso y)</title> <link rel="stylesheet" href="../menu.css"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso y) La información en versión pública de las declaraciones patrimoniales de los servidores públicos que así lo determinen, en los sistemas habilitados para ello, de acuerdo a la normatividad aplicable</h2> <?php mostrarTablaDocumentos("../Transparencia/Fraccion5/y/", "Documentos disponibles"); ?> </main> </body> </html> F5n-20251212174507.php 0000644 00000004332 15117323755 0007304 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso n)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso n) Cuentas públicas, auditorías y demás informes de gestión financiera</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/n/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5o-20251212174615.php 0000644 00000004363 15117323755 0007311 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso o)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso o) Información sobre adjudicaciones directas en adquisiciones, obra pública, inversión y servicios</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/o/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5r-20251212174509.php 0000644 00000004272 15117323755 0007315 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso r)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso r) Inventarios de bienes muebles e inmuebles</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/r/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5n.php 0000644 00000004332 15117323755 0005720 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso n)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso n) Cuentas públicas, auditorías y demás informes de gestión financiera</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/n/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5c-20251212174610.php 0000644 00000004373 15117323755 0007271 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso c)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso c) El presupuesto de egresos anual y, en su caso, el clasificador por objeto del gasto...</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/c/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5n-20251212174507-20251213164353.php 0000644 00000004332 15117323755 0010667 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso n)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso n) Cuentas públicas, auditorías y demás informes de gestión financiera</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/n/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5nn-20251212174506-20251213164511.php 0000644 00000004372 15117323755 0011044 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso ñ)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso ñ) La estadística de las solicitudes de información pública atendidas y visitas al sistema de consulta</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/nn/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5b-20251212174503-20251213164355.php 0000644 00000004326 15117323755 0010654 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso b)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso b) Los ingresos extraordinarios recibidos por cualquier concepto...</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/b/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5j-20251212174459.php 0000644 00000004265 15117323755 0007313 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso j)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso j) Los gastos de comunicación social</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/j/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> error_log 0000644 00000014517 15117323755 0006502 0 ustar 00 [08-Dec-2025 08:50:25 UTC] PHP Warning: session_start(): Session cannot be started after headers have already been sent in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/index.php on line 22 [12-Dec-2025 16:33:40 UTC] PHP Warning: session_start(): Session cannot be started after headers have already been sent in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/index.php on line 22 [12-Dec-2025 18:41:46 UTC] PHP Warning: session_start(): Session cannot be started after headers have already been sent in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/index.php on line 22 [12-Dec-2025 18:41:46 UTC] PHP Warning: session_start(): Session cannot be started after headers have already been sent in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/index.php on line 22 [12-Dec-2025 21:28:49 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5e.php on line 58 [12-Dec-2025 21:28:49 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5e.php on line 58 [12-Dec-2025 21:28:49 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5e.php on line 58 [12-Dec-2025 21:28:52 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5z.php on line 45 [12-Dec-2025 21:28:52 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5z.php on line 45 [12-Dec-2025 21:28:52 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5z.php on line 45 [12-Dec-2025 21:28:54 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5a.php on line 58 [12-Dec-2025 21:28:54 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5a.php on line 58 [12-Dec-2025 21:28:54 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5a.php on line 58 [12-Dec-2025 21:29:00 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5f.php on line 58 [12-Dec-2025 21:29:00 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5f.php on line 58 [12-Dec-2025 21:29:00 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5f.php on line 58 [12-Dec-2025 21:29:03 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5g.php on line 74 [12-Dec-2025 21:29:03 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5g.php on line 74 [12-Dec-2025 21:29:03 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5g.php on line 74 [12-Dec-2025 21:29:07 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5d.php on line 58 [12-Dec-2025 21:29:07 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5d.php on line 58 [12-Dec-2025 21:29:07 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5d.php on line 58 [12-Dec-2025 21:29:11 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5n.php on line 49 [12-Dec-2025 21:29:11 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5n.php on line 49 [12-Dec-2025 21:29:11 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5n.php on line 49 [12-Dec-2025 21:29:14 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5h.php on line 49 [12-Dec-2025 21:29:14 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5h.php on line 49 [12-Dec-2025 21:29:14 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5h.php on line 49 [12-Dec-2025 21:29:21 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5nn.php on line 49 [12-Dec-2025 21:29:21 UTC] PHP Warning: include(../menu.php): Failed to open stream: No such file or directory in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5nn.php on line 49 [12-Dec-2025 21:29:21 UTC] PHP Warning: include(): Failed opening '../menu.php' for inclusion (include_path='.:/opt/cpanel/ea-php83/root/usr/share/pear') in /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5/Fraccion2/F5nn.php on line 49 F5u.php 0000644 00000004131 15117323755 0005724 0 ustar 00 <?php function mostrarTablaDocumentos($ruta, $titulo) { echo "<h2>$titulo</h2>"; echo "<table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { echo "<tr><td colspan='2'>No se encontró la carpeta.</td></tr>"; } echo "</tbody></table>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso u)</title> <link rel="stylesheet" href="../menu.css"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso u) Los decretos y expedientes relativos a las expropiaciones que realicen por utilidad pública</h2> <?php mostrarTablaDocumentos("../Transparencia/Fraccion5/u/", "Documentos disponibles"); ?> </main> </body> </html> F5b.php 0000644 00000004326 15117323755 0005707 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso b)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso b) Los ingresos extraordinarios recibidos por cualquier concepto...</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/b/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5p.php 0000644 00000004326 15117323755 0005725 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso p)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso p) Información sobre concursos por invitación y licitaciones públicas</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/p/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5v.php 0000644 00000004207 15117323755 0005731 0 ustar 00 <?php function mostrarTablaDocumentos($ruta, $titulo) { echo "<h2>$titulo</h2>"; echo "<table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { echo "<tr><td colspan='2'>No se encontró la carpeta.</td></tr>"; } echo "</tbody></table>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso v)</title> <link rel="stylesheet" href="../menu.css"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso v) Las pólizas de los cheques expedidos</h2> <?php mostrarTablaDocumentos("../Transparencia/Fraccion5/v/", "Documentos disponibles"); mostrarTablaDocumentos("../Transparencia/Fraccion5/v/antiguo/", "Documentos Antiguos"); ?> </main> </body> </html> F5a-20251212174506-20251213164511.php 0000644 00000004372 15117323755 0010651 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso a)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso a) Las partidas del Presupuesto de Egresos de la Federación y del Presupuesto de Egresos del Estado...</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/a/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5a.php 0000644 00000004372 15117323755 0005707 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso a)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso a) Las partidas del Presupuesto de Egresos de la Federación y del Presupuesto de Egresos del Estado...</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/a/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5h.php 0000644 00000004317 15117323755 0005715 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso h)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso h) El listado de jubilados y pensionados y el monto que reciben</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/h/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5r.php 0000644 00000004272 15117323755 0005727 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso r)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso r) Inventarios de bienes muebles e inmuebles</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/r/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5o.php 0000644 00000004363 15117323755 0005725 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso o)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso o) Información sobre adjudicaciones directas en adquisiciones, obra pública, inversión y servicios</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/o/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5f-20251212174506.php 0000644 00000004413 15117323755 0007273 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso f)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso f) Las remuneraciones mensuales por puesto, incluidas todas las prestaciones, estímulos o compensaciones</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/f/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5s-20251212184309.php 0000644 00000010575 15117323755 0007320 0 ustar 00 <?php function mostrarTablaDocumentos($ruta, $titulo) { echo "<h2>$titulo</h2>"; echo "<table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { echo "<tr><td colspan='2'>No se encontró la carpeta.</td></tr>"; } echo "</tbody></table>"; } function mostrarFacturasPorMes($ruta_base) { $meses = ['enero','febrero','marzo','abril','mayo','junio','julio','agosto','septiembre','octubre','noviembre','diciembre']; echo "<h2>Facturas por Mes</h2><div class='tabs-meses'>"; foreach ($meses as $i => $mes) { echo "<button class='tab-mes" . ($i === 0 ? " active" : "") . "' data-tab='$mes'>" . ucfirst($mes) . "</button>"; } echo "</div>"; foreach ($meses as $i => $mes) { $ruta = "$ruta_base/$mes/"; echo "<div class='mes-content' id='$mes' style='" . ($i === 0 ? 'display:block;' : 'display:none;') . "'> <table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos en esta pestaña.</td></tr>"; } else { echo "<tr><td colspan='2'>Carpeta no encontrada.</td></tr>"; } echo "</tbody></table></div>"; } } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso s)</title> <link rel="stylesheet" href="../menu.csscss"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } .tab-mes { padding: 8px 16px; margin: 5px 5px 10px 0; background-color: #e0e0e0; border: none; cursor: pointer; } .tab-mes.active { background-color: #2b3e5c; color: white; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso s) Gastos de representación, viáticos y viajes oficiales</h2> <?php mostrarTablaDocumentos("../Transparencia/Fraccion5/s/", "Documentos Generales"); mostrarTablaDocumentos("../Transparencia/Fraccion5/s/descripciones/", "Descripciones"); mostrarFacturasPorMes("../Transparencia/Fraccion5/s/facturas"); ?> </main> <script> document.querySelectorAll('.tab-mes').forEach(btn => { btn.addEventListener('click', () => { document.querySelectorAll('.tab-mes').forEach(b => b.classList.remove('active')); document.querySelectorAll('.mes-content').forEach(c => c.style.display = 'none'); btn.classList.add('active'); document.getElementById(btn.dataset.tab).style.display = 'block'; }); }); </script> </body> </html> F5t.php 0000644 00000004127 15117323755 0005730 0 ustar 00 <?php function mostrarTablaDocumentos($ruta, $titulo) { echo "<h2>$titulo</h2>"; echo "<table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { echo "<tr><td colspan='2'>No se encontró la carpeta.</td></tr>"; } echo "</tbody></table>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso t)</title> <link rel="stylesheet" href="../menu.css"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso t) Las concesiones, licencias, permisos o autorizaciones otorgadas de los últimos tres años</h2> <?php mostrarTablaDocumentos("../Transparencia/Fraccion5/t/", "Documentos disponibles"); ?> </main> </body> </html> F5a-20251212174506.php 0000644 00000004372 15117323755 0007272 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso a)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso a) Las partidas del Presupuesto de Egresos de la Federación y del Presupuesto de Egresos del Estado...</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/a/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5r-20251212174509-20251213164356.php 0000644 00000004272 15117323755 0010703 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso r)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso r) Inventarios de bienes muebles e inmuebles</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/r/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5z-20251212174504-20251213164511.php 0000644 00000004402 15117323755 0010672 0 ustar 00 <?php function mostrarTablaDocumentos($ruta, $titulo) { echo "<h2>$titulo</h2>"; echo "<table><thead><tr><th>Documento</th><th>Enlace</th></tr></thead><tbody>"; if (is_dir($ruta)) { $archivos = scandir($ruta); $hay = false; foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr><td>" . htmlspecialchars($nombre_legible) . "</td><td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td></tr>"; $hay = true; } } if (!$hay) echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { echo "<tr><td colspan='2'>No se encontró la carpeta.</td></tr>"; } echo "</tbody></table>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <title>Fracción V - Inciso z)</title> <link rel="stylesheet" href="../menu.css"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso z) El registro de los procedimientos de responsabilidad administrativa, con indicación del número de expediente, fecha de ingreso, nombre del denunciante, nombre y cargo del denunciado, causa del procedimiento, estado procesal y, en su caso, la sanción impuesta</h2> <?php mostrarTablaDocumentos("../Transparencia/Fraccion5/z/", "Documentos disponibles"); ?> </main> </body> </html> F5e-20251212174505.php 0000644 00000004340 15117323755 0007270 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso e)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso e) El organigrama y plantilla del personal del sujeto obligado</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/e/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5d-20251212174506-20251213164511.php 0000644 00000004376 15117323755 0010660 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso d)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso d) Las convocatorias a concursos para ocupar cargos públicos y los resultados de los mismos</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/d/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5l-20251212174609.php 0000644 00000005316 15117323755 0007310 0 ustar 00 <?php function obtenerArchivos($ruta) { $archivos = []; if (is_dir($ruta)) { foreach (scandir($ruta) as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== '.' && $archivo !== '..' && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $archivos[] = [ 'nombre' => ucwords(str_replace(['-', '_'], ' ', pathinfo($archivo, PATHINFO_FILENAME))), 'ruta' => "$ruta/$archivo" ]; } } } return $archivos; } function mostrarTabla($titulo, $archivos) { echo "<h2>$titulo</h2> <table> <thead><tr><th>Documento</th><th>Enlace</th></tr></thead> <tbody>"; if (count($archivos) === 0) { echo "<tr><td colspan='2'>No hay documentos disponibles.</td></tr>"; } else { foreach ($archivos as $archivo) { echo "<tr><td>" . htmlspecialchars($archivo['nombre']) . "</td><td><a href='" . $archivo['ruta'] . "' target='_blank'>Ver documento</a></td></tr>"; } } echo "</tbody></table>"; } ?> <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso l)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fraccion V - Informacion financiera, patrimonial y administrativa</h1> <h2>Inciso l) Subsidios recibidos y otorgados, padrones y montos pagados</h2> <?php $base = "../Transparencia/Fraccion5/l"; // Mostrar tabla de Montos efectivamente pagados // $montos = obtenerArchivos("$base/Montos efectivamente pagados"); // mostrarTabla("Montos efectivamente pagados", $montos); // Mostrar Padrones por año $padrones_path = "$base/Padrones"; for ($anio = 2019; $anio <= 2025; $anio++) { $padrones = obtenerArchivos("$padrones_path/$anio"); mostrarTabla("Padrones $anio", $padrones); } ?> </main> </body> </html> F5d-20251212174506.php 0000644 00000004376 15117323755 0007301 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso d)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso d) Las convocatorias a concursos para ocupar cargos públicos y los resultados de los mismos</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/d/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5j.php 0000644 00000004265 15117323755 0005721 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso j)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso j) Los gastos de comunicación social</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/j/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html> F5f.php 0000644 00000004413 15117323755 0005710 0 ustar 00 <!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8" /> <title>Fracción V - Inciso f)</title> <link rel="stylesheet" href="../menu.css" /> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; margin: 0; padding: 0; } main { padding: 90px 20px 40px; max-width: 1100px; margin: 0 auto; } h1, h2 { color: #2b3e5c; } table { width: 100%; border-collapse: collapse; margin-top: 20px; } th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } th { background-color: #f0f0f0; } tr:hover { background-color: #f9f9f9; } a { color: #0066cc; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <?php include("../menu.php"); ?> <main> <h1>Fracción V - Información financiera, patrimonial y administrativa</h1> <h2>Inciso f) Las remuneraciones mensuales por puesto, incluidas todas las prestaciones, estímulos o compensaciones</h2> <table> <thead> <tr> <th>Documento</th> <th>Enlace</th> </tr> </thead> <tbody> <?php $ruta = "../Transparencia/Fraccion5/f/"; if (is_dir($ruta)) { $archivos = scandir($ruta); foreach ($archivos as $archivo) { $ext = strtolower(pathinfo($archivo, PATHINFO_EXTENSION)); if ($archivo !== "." && $archivo !== ".." && in_array($ext, ['pdf', 'docx', 'doc', 'xls', 'xlsx'])) { $nombre = pathinfo($archivo, PATHINFO_FILENAME); $nombre_legible = ucwords(str_replace(['-', '_'], ' ', $nombre)); echo "<tr> <td>" . htmlspecialchars($nombre_legible) . "</td> <td><a href='$ruta$archivo' target='_blank'>Ver documento</a></td> </tr>"; } } } else { echo "<tr><td colspan='2'>No se encontró la carpeta correspondiente.</td></tr>"; } ?> </tbody> </table> </main> </body> </html>
| ver. 1.4 |
Github
|
.
| PHP 8.3.28 | Generation time: 0 |
proxy
|
phpinfo
|
Settings