Skip to content

Instantly share code, notes, and snippets.

@maranemil
Last active August 29, 2015 14:19
Show Gist options
  • Save maranemil/b5df6ab5ee3f3d6921a9 to your computer and use it in GitHub Desktop.
Save maranemil/b5df6ab5ee3f3d6921a9 to your computer and use it in GitHub Desktop.
SugarCRM7 Filter fields definitions
//clients/base/filters/operators/operators.php
//clients/base/api/FilterApi.php
//clients/base/layouts/filter/filter.js
//clients/base/layouts/filterpanel/filterpanel.js
$viewdefs['base']['filter']['operators'] = array(
'multienum' => array(
'$contains' => 'LBL_OPERATOR_CONTAINS', // is any of
'$not_contains' => 'LBL_OPERATOR_NOT_CONTAINS',
),
'enum' => array(
'$in' => 'LBL_OPERATOR_CONTAINS', // is any of
'$not_in' => 'LBL_OPERATOR_NOT_CONTAINS',
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment