You are here

function _patterns_export_build_input_name in Patterns 7

Same name and namespace in other branches
  1. 7.2 patterns_export/patterns_export.module \_patterns_export_build_input_name()

Helper function to build the form of exportable components

Parameters

string $module The name of the module:

string $tag The name of the tag:

Return value

string A valid input name for a checkbox input

1 call to _patterns_export_build_input_name()
patterns_export_page1 in patterns_export/patterns_export.module

File

patterns_export/patterns_export.module, line 310

Code

function _patterns_export_build_input_name($module, $tag) {
  return 'ext[' . $module . '][options][' . $tag . ']';
}