You are here

function export_is_permitted in Node export 6

Same name and namespace in other branches
  1. 5.2 export.module \export_is_permitted()
  2. 5 export.module \export_is_permitted()
4 calls to export_is_permitted()
export_access in ./export.module
export_node_export in ./export.pages.inc
exports a node - prepopulate a node editing form set $return_code to TRUE to not return form but the code instead.
export_node_prepopulate in ./export.pages.inc
exports a node - prepopulate a node editing form
export_node_save in ./export.pages.inc
exports a node by directly saving it.

File

./export.module, line 70

Code

function export_is_permitted($type) {
  $omitted = variable_get('export_omitted', array());
  return empty($omitted[$type]);
}