function webform_invitation_xlsCell in Webform Invitation 7
Same name and namespace in other branches
- 7.2 webform_invitation.module \webform_invitation_xlsCell()
1 call to webform_invitation_xlsCell()
File
- ./
webform_invitation.module, line 414
Code
function webform_invitation_xlsCell($row, $col, $val) {
$len = strlen($val);
return pack("s*", 0x204, 8 + $len, $row, $col, 0x0, $len) . $val;
}