You are here

function barcode_plugin_max_length in Barcode 7.2

Same name and namespace in other branches
  1. 6.2 includes/barcode.plugins.inc \barcode_plugin_max_length()
1 call to barcode_plugin_max_length()
barcode_field_widget_form in ./barcode.module
Implements hook_field_widget_form().

File

includes/barcode.plugins.inc, line 58
Code to load barcode symbology plugins

Code

function barcode_plugin_max_length($encoding_name) {
  $plugin = barcode_load_plugin($encoding_name);
  $max_length_function = 'barcode_' . $plugin . '_max_length';
  if (function_exists($max_length_function)) {
    return $max_length_function($encoding_name);
  }
}