You are here

function views_gantt_close_on_submit in Views Gantt 7.2

Check if we should close the dialog upon submition.

2 calls to views_gantt_close_on_submit()
views_gantt_entity_insert in ./views_gantt.module
Implements hook_entity_insert().
views_gantt_entity_update in ./views_gantt.module
Implements hook_entity_update().

File

./views_gantt.module, line 384
Module file for Views Gantt

Code

function views_gantt_close_on_submit() {
  return !isset($_GET['closeonsubmit']) || $_GET['closeonsubmit'];
}