Drupal 7: расширенные настройки темы после отправки - PullRequest
1 голос
/ 01 ноября 2011

У меня проблема с расширенными настройками в theme-settings.php. я могу создать пользовательскую форму с этим ->

mytheme_form_system_theme_settings_alter(&$form, &$form_state) {
 //custom form
}

функция. Но как я могу интегрировать новую функцию после отправки настроек? как это:

mytheme_system_theme_settings_submit_alter($form, &$form_state) {
  // if form submited -> execute function
}

1 Ответ

2 голосов
/ 01 ноября 2011

Вы можете добавить пользовательский обработчик отправки в форму в самой функции изменения:

function mytheme_form_system_theme_settings_alter(&$form, &$form_state) {
  // Build up the rest of the form.

  // Add your submission handler to the form.
  $form['#submit'][] = 'mytheme_form_system_theme_settings_submit';
}

function mytheme_form_system_theme_settings_submit(&$form, &$form_state) {
  // Form has been submitted, execute your function.
}
...