You are here

function theme_mobilecode in Mobile Codes 5

Same name and namespace in other branches
  1. 6.2 mobile_codes.module \theme_mobilecode()
  2. 6 mobile_codes.module \theme_mobilecode()
  3. 7.2 mobile_codes.module \theme_mobilecode()

Theme function for displaying Mobile Codes

2 theme calls to theme_mobilecode()
mobile_codes_field_formatter in ./mobile_codes.formatter.inc
mobile_codes_filter_process in ./mobile_codes.filter.inc

File

./mobile_codes.module, line 266
Mobile Codes core functions

Code

function theme_mobilecode($data, $arguments = array()) {
  $file = mobile_codes_generate($data, $arguments);
  return theme('image', $file, $arguments['name'], $arguments['name'], NULL, FALSE);
}