home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / CMS / xoops-2.0.18.1.exe / xoops-2.0.18.1 / htdocs / class / xoopsform / formtext.php < prev    next >
Encoding:
PHP Script  |  2007-12-08  |  4.5 KB  |  137 lines

  1. <?php
  2. // $Id: formtext.php 1158 2007-12-08 06:24:20Z phppp $
  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. if (!defined('XOOPS_ROOT_PATH')) {
  32.     die("XOOPS root path not defined");
  33. }
  34. /**
  35.  * @package     kernel
  36.  * @subpackage  form
  37.  * 
  38.  * @author        Kazumi Ono    <onokazu@xoops.org>
  39.  * @copyright    copyright (c) 2000-2003 XOOPS.org
  40.  */
  41.  
  42. /**
  43.  * A simple text field
  44.  * 
  45.  * @package     kernel
  46.  * @subpackage  form
  47.  * 
  48.  * @author        Kazumi Ono    <onokazu@xoops.org>
  49.  * @copyright    copyright (c) 2000-2003 XOOPS.org
  50.  */
  51. class XoopsFormText extends XoopsFormElement {
  52.  
  53.     /**
  54.      * Size
  55.      * @var    int 
  56.      * @access    private
  57.      */
  58.     var $_size;
  59.  
  60.     /**
  61.      * Maximum length of the text
  62.      * @var    int 
  63.      * @access    private
  64.      */
  65.     var $_maxlength;
  66.  
  67.     /**
  68.      * Initial text
  69.      * @var    string  
  70.      * @access    private
  71.      */
  72.     var $_value;
  73.  
  74.     /**
  75.      * Constructor
  76.      * 
  77.      * @param    string    $caption    Caption
  78.      * @param    string    $name       "name" attribute
  79.      * @param    int        $size        Size
  80.      * @param    int        $maxlength    Maximum length of text
  81.      * @param    string  $value      Initial text
  82.      */
  83.     function XoopsFormText($caption, $name, $size, $maxlength, $value = ""){
  84.         $this->setCaption($caption);
  85.         $this->setName($name);
  86.         $this->_size = intval($size);
  87.         $this->_maxlength = intval($maxlength);
  88.         $this->setValue($value);
  89.     }
  90.  
  91.     /**
  92.      * Get size
  93.      * 
  94.      * @return    int
  95.      */
  96.     function getSize() {
  97.         return $this->_size;
  98.     }
  99.  
  100.     /**
  101.      * Get maximum text length
  102.      * 
  103.      * @return    int
  104.      */
  105.     function getMaxlength() {
  106.         return $this->_maxlength;
  107.     }
  108.  
  109.     /**
  110.      * Get initial content
  111.      * 
  112.      * @param    bool    $encode To sanitizer the text? Default value should be "true"; however we have to set "false" for backward compat
  113.      * @return    string
  114.      */
  115.     function getValue($encode = false) {
  116.         return $encode ? htmlspecialchars($this->_value, ENT_QUOTES) : $this->_value;
  117.     }
  118.  
  119.     /**
  120.      * Set initial text value
  121.      * 
  122.      * @param    $value  string
  123.      */
  124.     function setValue($value) {
  125.         $this->_value = $value;
  126.     }
  127.  
  128.     /**
  129.      * Prepare HTML for output
  130.      * 
  131.      * @return    string  HTML
  132.      */
  133.     function render() {
  134.         return "<input type='text' name='".$this->getName()."' id='".$this->getName()."' size='".$this->getSize()."' maxlength='".$this->getMaxlength()."' value='".$this->getValue()."'".$this->getExtra()." />";
  135.     }
  136. }
  137. ?>