You are here

function scald_galleria_form_alter in Scald: Gallery 7.2

Implements hook_form_alter().

File

scald_galleria/scald_galleria.module, line 133
Scald Galleria is a player for Scald Gallery.

Code

function scald_galleria_form_alter(&$form, &$form_state, $form_id) {
  if ($form_id == 'scald_player_settings_form' && $form['#scald']['player'] == 'galleria') {
    $form['#validate'] = array(
      'scald_galleria_scald_player_settings_form_validate',
    );
  }
}