You are here

function gathercontent_import_finish in GatherContent 7

Handles the 'finish' click on teh add/edit pane form wizard.

All we need to do is set a flag so the return can handle adding the pane.

1 string reference to 'gathercontent_import_finish'
gathercontent_import in ./gathercontent.module
Import wizard, built with CTools multistep form wizard.

File

./gathercontent.module, line 198
Imports pages from GatherContent (http://gathercontent.com/) into Drupal as nodes.

Code

function gathercontent_import_finish(&$form_state) {
  $form_state['complete'] = TRUE;
}