]> git.llucax.com Git - mecon/meconlib.git/blob - marco/php/marco/MenuVertical.php
928889f5bb757a02acd04238f7445981911290db
[mecon/meconlib.git] / marco / php / marco / MenuVertical.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +----------------------------------------------------------------------+
4 // | PHP Version 4                                                        |
5 // +----------------------------------------------------------------------+
6 // | Copyright (c) 1997-2003 The PHP Group                                |
7 // +----------------------------------------------------------------------+
8 // | This source file is subject to version 2.02 of the PHP license,      |
9 // | that is bundled with this package in the file LICENSE, and is        |
10 // | available at through the world-wide-web at                           |
11 // | http://www.php.net/license/2_02.txt.                                 |
12 // | If you did not receive a copy of the PHP license and are unable to   |
13 // | obtain it through the world-wide-web, please send a note to          |
14 // | license@php.net so we can mail you a copy immediately.               |
15 // +----------------------------------------------------------------------+
16 // | Created: Tue Apr 29 12:35:45 2003
17 // | Author:  Martin Marrese <mmarre@mecon.gov.ar>
18 // +----------------------------------------------------------------------+
19 //
20 // $Id$
21 // $Author$
22 // $URL$
23 // $Date$
24 // $Rev$
25 //
26
27 #require_once 'PEAR.php';
28
29
30 // +X2C includes
31 require_once 'Menu.php';
32 // ~X2C
33
34 // +X2C Class 103 :MenuVertical
35 /**
36  *
37  * @access public
38  */
39 class MenuVertical extends Menu {
40     // ~X2C
41
42     // +X2C Operation 107
43     /**
44      * Funcion que se encarga de devolver el html que hay que mostrar en pantalla.
45      *
46      * @return string
47      *
48      * @access public
49      */
50     function toHtml() // ~X2C
51     {
52         return "<a href=\"".$this->_link."\"><img name=\"".$this->_nombre."\" src=\"images/carp2_f2\" border=\"0\">".$this->_nombre."</a>";
53     }
54     // -X2C
55
56     // +X2C Operation 110
57     /**
58      * Constructor. Recibe el nombre del menu, el link y el nombre de la imagen.
59      *
60      * @param  array $menu Array con los datos del menu
61      *
62      * @return void
63      *
64      * @access public
65      */
66     function MenuVertical($menu) // ~X2C
67     {
68         parent::Menu(null,null);
69         $this->_nombre  = $menu['nombre'];
70         $this->_link    = $menu['link'];
71         $this->_imagen  = $menu['imagenComun'];
72     }
73     // -X2C
74
75 } // -X2C Class :MenuVertical
76
77 ?>