You are here

function weight_disable_form in Weight 5

1 string reference to 'weight_disable_form'
weight_disable_page in ./weight.module

File

./weight.module, line 266

Code

function weight_disable_form() {
  $form[] = array(
    '#type' => 'submit',
    '#value' => t('Remove weights'),
  );
  return $form;
}