You are here

function patterns_exit in Patterns 6.2

Same name and namespace in other branches
  1. 5 patterns.module \patterns_exit()
  2. 6 patterns.module \patterns_exit()
  3. 7.2 includes/unused.inc \patterns_exit()
  4. 7 includes/unused.inc \patterns_exit()

File

./patterns.module, line 2165
Enables extremely simple adding/removing features to your site with minimal to no configuration

Code

function patterns_exit($destination = null) {
  $batch =& batch_get();
  if (variable_get('patterns_form_helper', FALSE) && $_SESSION['patterns_form_helper'] && !$destination && empty($batch)) {
    if (module_exists('devel')) {

      //dpm($_SESSION['patterns_form_helper']);
      kprint_r($_SESSION['patterns_form_helper']);
    }
    else {
      print theme('patterns_form_helper', $_SESSION['patterns_form_helper']['form_id'], $_SESSION['patterns_form_helper']['form_values']);
    }
  }
}