Anton Komarev

Results 196 comments of Anton Komarev

Another one possible approach - create classes which formats dates when converting object to string. ```php final class Rfc3339FormatZonedDateTime { private ZonedDateTime $dateTime; public function __constructor(ZonedDateTime $dateTime) { $this->dateTime =...

Nope, sorry. I'm not actually using your package. Just made a research of existing solutions and found this issue.

All cases i could imagine for tags widgets but not sure all of them will be really useful: 1. Display tags of model as list with `` elements (main goal...

6, 7, 10 are for `TagInputWidget`. But they should be implemented as button to quick edit in `TagWidget`. When you click on it - `TagWidget` replacing by `TagInputWidget`. Which will...

Display widgets should be able to replace spaces in links with `+` sign. It's W3C standard: > URLs cannot contain spaces. URL encoding normally replaces a space with a plus...

Am I missed something? ``` php ``` This code generating me links with spaces: `/tag/url good practice`.

@creocoder Thanks for a brief explanation! And this way more flexible for multiple tags filtering I suppose. I reserved `tag/index` method for list of all tags and `tag/view` is working...

What is the best way to get tags slugs in a view to bypass them in URL?

@creocoder Sorry, looks like I forgot a details. The correct example will be: ``` php ``` Because `$tag` couldn't be passed in `Html::a()` function, it will be an object in...

Just realized that all search functions of `TaggableQueryBehavior` wouldn't be useful in that example. Because all searches are performed by `name` attribute and not working with slug. Thats solving in...