Sebjugate

Results 10 comments of Sebjugate

We are having this issue as well with version 2.2.10. It seems that Vagrant's initial credential check wants DOMAIN\user or user@domain, but when vagrant tries to mount the share on...

Looks like this change may have actually been introduced in PHP 7.2: https://wiki.php.net/rfc/convert_numeric_keys_in_object_array_casts PHP 7.1 casts `$o->{1} = 'value'` to `['1' => 'value']` whereas 7.2 casts it to `[1 =...

If the solution to this is to integrate the cache into the core system, how would one utilize a custom cache driver? We'd encounter the same problem, since unless that...

@toitzi, Thanks for the response. First, let me preface my comment by saying it is very possible that I'm totally misunderstanding the problem and solution, so this is not to...

Cool. I agree that this is something I suspect a lot of apps could use or have already implemented in their own way. I have implemented something similar for my...

I think just returning on the action should accomplish this? You could set a property on the controller in `before()` like `$skip_action` and then `if ($this->skip_action) return;` in the action.

I haven't tested this, but you should be able to make an `action_none` and then set `$this->request->action('none');` in `before()`

Sounds like a great idea, though I definitely agree that this should be an additional module as you've done in your sample code, rather than a replacement of the legacy...

Here is one possible solution to this problem. I don't know if it is the "right" way to do it: https://github.com/Sebjugate/tribute/commit/786620a848a86b0cbff3fa9f41b8e6bf4c03097b

It turns out the events also need to be re-bound to the menu element, I added that in my possible solution. While my suggested solution works, it doesn't feel like...