Damien MATHIEU

Results 74 comments of Damien MATHIEU

@skydiver ... Is this plugin still maintained?

Not sure the page can handle default content and blocks in the same time. Try : ```twig [staticPage] useContent = 0 default = 0 ``` To see if the behavior...

> Can we have a PR that just always converts it to either a stdClass or an array? It's on my to-do list ... but I'm running out of time....

@LukeTowers @bennothommo Why not use the `Illuminate\Support\Fluent` class? It provides access to data in two ways: ```php use Illuminate\Support\Fluent; $dataArray = ['color'=> 'red', 'size'=> null]; $dataStdClass = (object) $dataArray; //...

@LukeTowers Yes, I'd like to ... but I need to know where to start and if it's within my reach.

I've tried to dive back into this request ... but I'm a bit lost! **[FieldParser.php - processOptionsToArray()](https://github.com/wintercms/storm/blob/b9b5aae924eaa4be17a10c7c8138732328be6b7f/src/Parse/Syntax/FieldParser.php#L416) :** Only takes a string and returns an array. ``` * Splits an...

@LukeTowers that's would be nice too! Are you also thinking of keeping the option of calling a static method? It has the benefit of being able to define the method...

@LukeTowers This would be a good improvement for the event manager and certainly the best UI/UX. My tests in this direction are meeting several challenges: - The list search field...

It might be interesting to use a generic icon in SVG format, using a `` node to display the file extension. ```xml EXT ``` In this case `EXT` in text...