function ytarget_get_goal in Webform Yandex Goals 7
Same name and namespace in other branches
- 7.2 ytarget.module \ytarget_get_goal()
3 calls to ytarget_get_goal()
File
- ./
ytarget.module, line 96
Code
function ytarget_get_goal($nid) {
$goals = variable_get('ytarget_goals', array());
$goal = (string) empty($goals[$nid]) ? 'projectClientForm' . $nid : $goals[$nid];
return $goal;
}