source: sipes/0.3-modules/entes_planificadores_toolbar/templates/entes-planificadores-toolbar-planner.tpl.php @ f74cf58

stable
Last change on this file since f74cf58 was 44b8c5f, checked in by Sipes Apn <root@…>, 7 años ago

se agrego el modulo para

  • Propiedad mode establecida a 100755
File size: 2.0 KB
Línea 
1<?php
2 /**
3  * Sistema Automatizado para la Planificación Estratégico-Situacional en la Administración Pública Venezolana
4  * @file entes-planificadores-toolbar-planner.tpl.php
5  * Drupal part Module to code ente planificador module
6  * Copyright 2011 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 - Msc. Juan Vizcarrondo
23  * @date 2012-03-07 // (a&#241;o-mes-dia)
24  * @version 0.2 // (0.2)
25  *
26  */
27/**
28 * @file
29 * Theme implementation to display a toolbar planner.
30 *
31 * Available variables:
32 * - $links: Lista de opciones del toolbar.
33 */
34?>
35
36<div id="entes-planificadores-toolbar-planner-select">
37  <ul class="entes-planificadores-toolbar-planner-select-list">
38    <?php foreach ($links as $link): ?>
39
40        <?php 
41          print l(
42            $link['icon'],
43            $link['path'],
44            array(
45              'html' => TRUE,
46              'attributes' => array(
47                'title' => $link['description'],
48                'alt' => $link['description'],
49                'class' => 'entes-planificadores-toolbar-planner-link entes-planificadores-toolbar-planner-link-' . $link['category'],
50              )
51            )
52          );
53        ?>
54      </li>
55    <?php endforeach ?>
56  </ul>
57</div>
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.