You are here

function rotating_banner_add_form_submit in Rotating Banner 7.2

Same name and namespace in other branches
  1. 7 rotating_banner.admin.inc \rotating_banner_add_form_submit()

File

./rotating_banner.admin.inc, line 269

Code

function rotating_banner_add_form_submit($form, &$form_state) {
  $rb = RotatingBanner::create($form_state['values']['title']);
  $delta = $rb->rbid;
  $form_state['redirect'] = 'admin/structure/block/manage/rotating_banner/' . $delta . '/configure';
}