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...
Posted55 min 39 sec ago by Martin Price | System Horizons Ltd (yorkshirepudding) on:
My suggestions, if there is time to look at recent bug reports:
(1) Not sure if the fix for this issue still needs a code review to get labeled as RTBC:
Editor link autocomplete...
Posted23 hours 52 min ago by Olaf Grabienski (Olafski) on:
Comments
This issue may be related (and it looks like it has a PR that can be tested):
https://github.com/backdrop/backdrop-issues/issues/2134
That PR wont be in production any time soon. But you could make a quick access condition module, its quite simple. Use as a guide: https://github.com/backdrop/backdrop/blob/1.x/core/modules/layout/plugins/access/path_layout_access.inc or https://github.com/backdrop-contrib/block_scheduler
Your form function would probably be something like:
$form['nid'] = array( '#type' => 'textfield', '#title' => t('Node NID'), '#default_value' => isset($this->settings['nid']) ? $this->settings['nid'] : '', ); $form['term'] = array( '#type' => 'textfield', '#title' => t('Term'), '#default_value' => isset($this->settings['term']) ? $this->settings['term'] : '', );And your access function:
function checkAccess() { $entity = $this->contexts[$this->entity_type]->data; return isset($entity->{$this->settings['term']}); }Some adjustment may be necessary.
As an easy workaround without any coding Views could be your friend.
We'd need some more info about your use-case though. Could you describe a bit more, please?