Blogs
21
April
April
Greetings!
SugarCRM comes with a very handful function to convert multi enum values from ^value_1^,^value_2^,^value_3^,^value_4^ into an array.
$aField = unencodeMultienum($fieldValue);
var_dump($aField);
will give you an array.
In the same manner the reverse is possible. Give an array of values which will be converted into a string which SugarCRM understands.
encodeMultienumValue($arr);
Hope this helps.
Feel free to leave comments.
SugarCRM comes with a very handful function to convert multi enum values from ^value_1^,^value_2^,^value_3^,^value_4^ into an array.
$aField = unencodeMultienum($fieldValue);
var_dump($aField);
will give you an array.
In the same manner the reverse is possible. Give an array of values which will be converted into a string which SugarCRM understands.
encodeMultienumValue($arr);
Hope this helps.
Feel free to leave comments.
Download attachments:
Comments
- No Comments Found.