| 1 | <?php |
|---|
| 2 | // $Id: formbutton.php,v 1.2 2005/03/18 12:51:55 onokazu Exp $ |
|---|
| 3 | // ------------------------------------------------------------------------ // |
|---|
| 4 | // XOOPS - PHP Content Management System // |
|---|
| 5 | // Copyright (c) 2000 XOOPS.org // |
|---|
| 6 | // <http://www.xoops.org/> // |
|---|
| 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 | // You may not change or alter any portion of this comment or credits // |
|---|
| 14 | // of supporting developers from this source code or any supporting // |
|---|
| 15 | // source code which is considered copyrighted (c) material of the // |
|---|
| 16 | // original comment or credit authors. // |
|---|
| 17 | // // |
|---|
| 18 | // This program is distributed in the hope that it will be useful, // |
|---|
| 19 | // but WITHOUT ANY WARRANTY; without even the implied warranty of // |
|---|
| 20 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // |
|---|
| 21 | // GNU General Public License for more details. // |
|---|
| 22 | // // |
|---|
| 23 | // You should have received a copy of the GNU General Public License // |
|---|
| 24 | // along with this program; if not, write to the Free Software // |
|---|
| 25 | // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // |
|---|
| 26 | // ------------------------------------------------------------------------ // |
|---|
| 27 | // Author: Kazumi Ono (AKA onokazu) // |
|---|
| 28 | // URL: http://www.myweb.ne.jp/, http://www.xoops.org/, http://jp.xoops.org/ // |
|---|
| 29 | // Project: The XOOPS Project // |
|---|
| 30 | // ------------------------------------------------------------------------- // |
|---|
| 31 | /** |
|---|
| 32 | * |
|---|
| 33 | * |
|---|
| 34 | * @package kernel |
|---|
| 35 | * @subpackage form |
|---|
| 36 | * |
|---|
| 37 | * @author Kazumi Ono <[email protected]> |
|---|
| 38 | * @copyright copyright (c) 2000-2003 XOOPS.org |
|---|
| 39 | */ |
|---|
| 40 | /** |
|---|
| 41 | * A button |
|---|
| 42 | * |
|---|
| 43 | * @author Kazumi Ono <[email protected]> |
|---|
| 44 | * @copyright copyright (c) 2000-2003 XOOPS.org |
|---|
| 45 | * |
|---|
| 46 | * @package kernel |
|---|
| 47 | * @subpackage form |
|---|
| 48 | */ |
|---|
| 49 | class XoopsFormButton extends XoopsFormElement { |
|---|
| 50 | |
|---|
| 51 | /** |
|---|
| 52 | * Value |
|---|
| 53 | * @var string |
|---|
| 54 | * @access private |
|---|
| 55 | */ |
|---|
| 56 | var $_value; |
|---|
| 57 | |
|---|
| 58 | /** |
|---|
| 59 | * Type of the button. This could be either "button", "submit", or "reset" |
|---|
| 60 | * @var string |
|---|
| 61 | * @access private |
|---|
| 62 | */ |
|---|
| 63 | var $_type; |
|---|
| 64 | |
|---|
| 65 | /** |
|---|
| 66 | * Constructor |
|---|
| 67 | * |
|---|
| 68 | * @param string $caption Caption |
|---|
| 69 | * @param string $name |
|---|
| 70 | * @param string $value |
|---|
| 71 | * @param string $type Type of the button. |
|---|
| 72 | * This could be either "button", "submit", or "reset" |
|---|
| 73 | */ |
|---|
| 74 | function XoopsFormButton($caption, $name, $value="", $type="button"){ |
|---|
| 75 | $this->setCaption($caption); |
|---|
| 76 | $this->setName($name); |
|---|
| 77 | $this->_type = $type; |
|---|
| 78 | $this->setValue($value); |
|---|
| 79 | } |
|---|
| 80 | |
|---|
| 81 | /** |
|---|
| 82 | * Get the initial value |
|---|
| 83 | * |
|---|
| 84 | * @return string |
|---|
| 85 | */ |
|---|
| 86 | function getValue(){ |
|---|
| 87 | return $this->_value; |
|---|
| 88 | } |
|---|
| 89 | |
|---|
| 90 | /** |
|---|
| 91 | * Set the initial value |
|---|
| 92 | * |
|---|
| 93 | * @return string |
|---|
| 94 | */ |
|---|
| 95 | function setValue($value){ |
|---|
| 96 | $this->_value = $value; |
|---|
| 97 | } |
|---|
| 98 | |
|---|
| 99 | /** |
|---|
| 100 | * Get the type |
|---|
| 101 | * |
|---|
| 102 | * @return string |
|---|
| 103 | */ |
|---|
| 104 | function getType(){ |
|---|
| 105 | return $this->_type; |
|---|
| 106 | } |
|---|
| 107 | |
|---|
| 108 | /** |
|---|
| 109 | * prepare HTML for output |
|---|
| 110 | * |
|---|
| 111 | * @return string |
|---|
| 112 | */ |
|---|
| 113 | function render(){ |
|---|
| 114 | return "<input type='".$this->getType()."' class='formButton' name='".$this->getName()."' id='".$this->getName()."' value='".$this->getValue()."'".$this->getExtra()." />"; |
|---|
| 115 | } |
|---|
| 116 | } |
|---|
| 117 | ?> |
|---|