You are here

function uc_extra_fields_pane_tt in Extra Fields Checkout Pane 6.2

Same name and namespace in other branches
  1. 7 uc_extra_fields_pane.module \uc_extra_fields_pane_tt()

Wrapper for i18nstrings() function

Return value

string

2 calls to uc_extra_fields_pane_tt()
UCXF_Field::generate_value in class/UCXF_Field.class.php
Generates the value for use in fields. This value will be used as a default value for textfields and as an array of options for selection fields.
UCXF_Field::output in class/UCXF_Field.class.php
Output a value with filtering

File

./uc_extra_fields_pane.module, line 1188
Module: uc_extra_fields_pane.module

Code

function uc_extra_fields_pane_tt($name, $string, $langcode = NULL) {
  return function_exists('i18nstrings') ? i18nstrings('ucxf:' . $name, $string, $langcode) : $string;
}