Пример #1
0
 /**
  * Prints a blank row in the table
  *
  * @param int    $i         the number of rows to create.  Ignored if
  *                           $title is used.
  * @param string $title     a string to be used as the label for the row
  * @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::displayBlank(), HTML_Form::addBlank(),
  *      HTML_Form::returnBlank(), HTML_Form::returnBlankRow()
  */
 function displayBlankRow($i, $title = '', $thattr = HTML_FORM_TH_ATTR, $tdattr = HTML_FORM_TD_ATTR)
 {
     print HTML_Form::returnBlankRow($i, $title, $thattr, $tdattr);
 }