开发者

Drupal Views - Custom / Modded SQL

开发者 https://www.devze.com 2023-02-11 12:20 出处:网络
I am having an issue with the \"Profile Checkboxes\" module which stores custom profile fields comma separated.

I am having an issue with the "Profile Checkboxes" module which stores custom profile fields comma separated.

The issue is if I create a view to filter by a value. The SQL result ends up being something like this:

...AND (profile_values_profile_interests.value in ('Business and Investment'))...

Which will not return any data since the value is stored like this:

"Business and Investment, Case Law, La开发者_高级运维bor Law, Tax Law"

I just need to adjust the SQL so that it is making sure the field contains the selected value

Is there anything I can do to adjust this?


For a 'quick hack' solution, you could try implementing hook_views_query_alter(&$view, &$query) in a custom module, check $view->name (and eventually also $view->current_display) to ensure you are dealing with the right view/display, and then manipulate $query as needed.


EDIT: Looks like the underlying problem has been addressed by the module maintainer in the meantime - see John's answer ...


I'm the creator and maintainer of Profile Checkboxes and thought you might be interested to know that the new version of the module now stores the values as serialized and includes Views support. The feature is available in the current release version.


Check out the Views modify query module.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号