1
svaha
XoopsFormText?
  • 2004/1/21 10:59

  • svaha

  • Just can't stay away

  • Posts: 896

  • Since: 2003/8/2 2


I've looked on wiki, but found no info on the use of XoopsFormText.
Anyone?

Aloha

2
DaBoyz
Re: XoopsFormText?
  • 2004/1/21 11:20

  • DaBoyz

  • Just popping in

  • Posts: 79

  • Since: 2002/8/8 1


Edit the file class/xoopsform/formtext.php ...

You will find your answer in it like this :

le="color: #000000"><?php /** * Constructor * * @param string $caption Caption * @param string $name "name" attribute * @param int $size Size * @param int $maxlength Maximum length of text * @param string $value Initial text */ function XoopsFormText($caption, $name, $size, $maxlength, $value=""){ $this->setCaption($caption); $this->setName($name); $this->_size = intval($size); $this->_maxlength = intval($maxlength); $this->setValue($value); }

3
svaha
Re: XoopsFormText?
  • 2004/1/21 12:10

  • svaha

  • Just can't stay away

  • Posts: 896

  • Since: 2003/8/2 2


Thnx