Пример #1
0
 /**
  * Prints the text provided inside a table row
  *
  * @param string $title     the string used as the label
  * @param string $text      a string to be displayed
  * @param string $thattr    a string of additional attributes to be put
  *                           in the <th> element (example: 'class="foo"')
  * @param string $tdattr    a string of additional attributes to be put
  *                           in the <td> element (example: 'class="foo"')
  * @return void
  *
  * @access public
  * @static
  * @see HTML_Form::displayPlaintext(), HTML_Form::addPlaintext(),
  *      HTML_Form::returnPlaintext(), HTML_Form::returnPlaintextRow()
  */
 function displayPlaintextRow($title, $text = '&nbsp;', $thattr = 'align="right valign="top""', $tdattr = HTML_FORM_TD_ATTR)
 {
     print HTML_Form::returnPlaintextRow($title, $text, $thattr, $tdattr);
 }