Пример #1
0
 /**
  * Prints a submit button inside a table row
  *
  * @param string $name      a string used in the 'name' attribute
  * @param string $title     a string that appears on the button
  * @param string $attr      a string of additional attributes to be put
  *                           in the element (example: 'id="foo"')
  * @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::displaySubmit(), HTML_Form::addSubmit(),
  *      HTML_Form::returnSubmit(), HTML_Form::returnSubmitRow()
  */
 function displaySubmitRow($name = 'submit', $title = 'Submit Changes', $attr = '', $thattr = HTML_FORM_TH_ATTR, $tdattr = HTML_FORM_TD_ATTR)
 {
     print HTML_Form::returnSubmitRow($name, $title, $attr, $thattr, $tdattr);
 }