You are here

function rec_example_settings_form in Recommender API 7.5

Same name and namespace in other branches
  1. 7.3 rec_example/rec_example.module \rec_example_settings_form()
1 string reference to 'rec_example_settings_form'
rec_example_menu in rec_example/rec_example.module
Implements hook_menu();

File

rec_example/rec_example.module, line 37

Code

function rec_example_settings_form() {
  $form = array();
  $form['rebuild'] = array(
    '#type' => 'submit',
    '#value' => t('Rebuild'),
    '#name' => 'rebuild',
    '#disabled' => FALSE,
  );
  $form['refresh'] = array(
    '#type' => 'submit',
    '#value' => t('Refresh'),
    '#name' => 'refresh',
    '#disabled' => FALSE,
  );
  $form['load_file'] = array(
    '#type' => 'submit',
    '#value' => t('Load data'),
    '#name' => 'load_file',
    '#disabled' => FALSE,
  );
  return $form;
}