function tmgmt_ui_review_form_element_ajaxid in Translation Management Tool 7
Helper function to output ajaxid.
Parameters
string $parent_key: Parent element key.
Return value
string The ajax id.
1 call to tmgmt_ui_review_form_element_ajaxid()
- _tmgmt_ui_review_form_element in ui/
tmgmt_ui.module - Build form elements for the review form using flatened data items.
File
- ui/
tmgmt_ui.module, line 692 - Common Translation managment UI.
Code
function tmgmt_ui_review_form_element_ajaxid($parent_key) {
return 'tmgmt-ui-element-' . drupal_clean_css_identifier($parent_key) . '-wrapper';
}