source: sipes/0.3-modules/reportes_sipp/includes/aem/aem_reporte.pages.inc @ eb502b4

stableversion-3.0
Last change on this file since eb502b4 was 303fae2, checked in by José Gregorio Puentes <jpuentes@…>, 9 años ago

se agregaron los modulos

  • Propiedad mode establecida a 100755
File size: 3.1 KB
Línea 
1<?php
2  /**
3  * Sistema Integral de Planificación y Presupuesto (SIPP)
4  * @file reportes_sipp.module
5  * Drupal part Module to Sistema Integral de Planificación y Presupuesto (SIPP)
6  * Copyright 2013 Sistema Automatizado para la Planificación Estratégico-Situacional en la Administración Pública Venezolana (CENDITEL)
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21  *
22  * @author Cenditel Merida - Ing. Diego Uzcátegui (diego.uzc [at] gmail [dot] com)
23  * @date 2013-05-01 // (a&#241;o-mes-dia)
24  * @version 0.1 // (0.1)
25  *
26  */
27
28/*
29 * Pagina que muestra el áreas estratégicas del ministerio
30 * Implementado por: Ing. Diego Uzcátegui,
31 * Inicio de codificación: 06-05-13
32 */
33
34function areas_estrategicas_mcti_reporte_page(){
35 
36  $page_content = '<br>';
37 
38  $page_content .= '<br><br>';
39  $page_content .= '<table align=\"center\" border=\"0\"><tr>'; 
40  $page_content .= "<td width=\"50%\" align=\"center\">"."<b>".l(t('Microinformes'), 'reportes_sipp/areas_estrategicas_ministerio/mi')."</b></td>";
41  $page_content .= "<td width=\"50%\" align=\"center\">"."<b>".l(t('Consulta Interactiva'), 'reportes_sipp/areas_estrategicas_ministerio/ci')."</b></td>";
42  $page_content .= '</tr></table>';
43  $page_content .= '<br><br>';   
44 
45  return $page_content;
46}
47
48
49function areas_estrategicas_mcti_reporte_mi_page(){
50 
51  $page_content = '<br>';
52 
53  $page_content .= '<br><br>';
54  $page_content .= '<table align=\"center\" border=\"0\"><tr>';
55  $page_content .= "<td width=\"33%\" align=\"center\">"."<b>".l(t('Consultar Microinformes'), 'reportes_sipp/areas_estrategicas_ministerio/mi/microinforme')."</b></td>";
56  $page_content .= "<td width=\"33%\" align=\"center\">"."<b>".l(t('Lista de Microinformes'), 'reportes_sipp/areas_estrategicas_ministerio/mi/lista_microinformes')."</b></td>";
57  $page_content .= "<td width=\"33%\" align=\"center\">"."<b>".l(t('Nuevo Microinforme'), 'reportes_sipp/areas_estrategicas_ministerio/mi/nuevo_microinforme')."</b></td>";
58  $page_content .= '</tr></table>';
59  $page_content .= '<br><br>';   
60 
61  return $page_content;
62}
63
64function areas_estrategicas_mcti_reporte_ci_page(){
65 
66  $page_content = '<br>';
67 
68  $page_content .= '<br><br>';
69  $page_content .= '<table align=\"center\" border=\"0\"><tr>';
70  $page_content .= "<td width=\"100%\" align=\"center\">"."<b>".l(t('Consulta Interactiva'), 'reportes_sipp/areas_estrategicas_ministerio/ci/interactivo')."</b></td>";
71  $page_content .= '</tr></table>';
72  $page_content .= '<br><br>';   
73 
74  return $page_content;
75}
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.