Something similar was taking place in drupal 7.
I have hook_views_query_alter in MODULENAME.views.inc file in the same folder as module file. I found out, that query handler is class views_plugin_query_default. Within that class:
function alter(&$view) {//dpm($view);
foreach (module_implements('views_query_alter') as $module) {//dpm($module);
$function = $module . '_views_query_alter';
$function($view, $this);
}
}
Is called, but can't find any module that implements hook...
Of course I cleared all the caches, even truncated tables cache_views and cache_views_data, all in vain.
AFAIR in drupal 7 similar problem solved itself automagically after some time, and hook_views_query_alter started to work. So maybe there is something else cached somewhere? Maybe .inc file is not being seen by backdrop? Access rights are as usual...
Recent comments
My thanks to you both... I understand now that Bee is not a module but a stand alone utility. I've installed it and see that it is similar to Drush which I have used before. I'll now...
Cloudflare specific advice needed
@ian Let's try to stay on the rails here. As the project page, https://backdropcms.org/project/bee, says: "Bee is a command line utility for Backdrop CMS." It is equivalent to drush. It is not...
Cloudflare specific advice needed
Now, now calm down! :) I based my statement "Since Bee doesn't seem to have any active sites using it - I wonder if that is a viable option?" on the following: Note active installs...
Cloudflare specific advice needed
Since Bee doesn't seem to have any active sites using it - I wonder if that is a viable option? What do you mean by that? Loads of sites use it but it is not a module, rather...
Cloudflare specific advice needed
My "unexpected shutdown" turned out to be my VPS Host replacing the kernal - they shutdown then restarted the server.
Cloudflare specific advice needed