source: sipes/0.3-modules/ente_planificador_hierarchical/views/ente_planificador_hierarchical_handler_field_ente_fathers.inc @ 2fa3319

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

se agregaron los modulos

  • Propiedad mode establecida a 100755
File size: 2.5 KB
Línea 
1<?php
2  /**
3  *
4  * Sistema Automatizado para la Planificación Estratégico-Situacional en la Administración Pública Venezolana
5  * @file ente_planificador_hierarchical_handler_field_ente_fathers.inc
6  * Drupal part Module ente_planificador_hierarchical module
7  * Copyright 2015 Sistema Automatizado para la Planificación Estratégico-Situacional en la Administración Pública Venezolana (CENDITEL)
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22  *
23  * Probado con un servidor Apache 2.0,
24  * Postgresql version 7.4.7 y 8.1 mysql 5.0.32 y PHP version 4.3.11 y 5.2.0-8
25  *
26  * @author Cenditel Merida - Msc. Juan Vizcarrondo
27  * @date 2015-02-14 // (a&#241;o-mes-dia)
28  * @version 0.2 // (0.1)
29  *
30  */
31
32/**
33 * Field handler to present a hierarchical ente fathres.
34 */
35class ente_planificador_hierarchical_handler_field_ente_fathers extends views_handler_field {
36  function construct() {
37    parent::construct();
38    $this->additional_fields['nid'] = 'nid';
39  }
40  function options_form(&$form, &$form_state) {
41    parent::options_form($form, $form_state);
42    $form['text'] = array(
43      '#type' => 'textfield',
44      '#title' => t('Text separator'),
45      '#default_value' => $this->options['text'],
46    );
47  }
48  function query() {
49    $this->ensure_my_table();
50    $this->add_additional_fields();
51  }
52
53  function render($values) {
54    $nid = $values->{$this->aliases['nid']};
55    $fathers = _ente_planificador_hierarchical_get_desc($nid, 1);
56    if (count($fathers)) {
57      $text = !empty($this->options['text']) ? $this->options['text'] : '>';
58      $output = '';
59      $sep = '';
60      foreach($fathers as $level => $ente) {
61        $output .= $sep . l($ente['title'], 'node/'. $ente['nid']);
62        if ($sep == '') {
63          $sep = ' ' . $text . ' ';
64        }
65      }
66      return  $output;
67    }
68    return;
69  }
70}
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.