You are here

function _hansel_export_get in Hansel breadcrumbs 8

Same name and namespace in other branches
  1. 7 export/hansel_export.module \_hansel_export_get()

Get a dump of the actual Hansel configuration

1 call to _hansel_export_get()
hansel_export_export_form in export/hansel_export.module
Form providing the configuration dump.

File

export/hansel_export.module, line 154

Code

function _hansel_export_get() {
  $config = hansel_get_config();
  $config = serialize($config);
  return $config;
}