Stef Dawson

Results 351 comments of Stef Dawson

Re: webhook, yes, let's look at implementing that at some point early next release.

Although I haven't tested it, this seems like a pretty good idea to me. Is it okay to be merged? Any backwards-compatibility issues? Regarding the [item attribute](https://github.com/textpattern/textpattern/pull/792/commits/f3083ccb000660329a0f7d02e5c574357b2d9c13): it assumes comma...

Processing client and server forms did occur to me, but I never got my head round mustache fully. Seemed useful though. I've used Twig, fwiw but found the control structures...

> That will be already a huge improvement, and if, one day, we are able to compose a whole admin pane from txp tags, my 10-years dream would come true....

Story so far, via examples: ## Textboxes Render a bog standard input box with the given name and value. Note you can just `echo` or `print` the tag to output...

5c06fea9 introduces the `TagCollection` class which, as its name suggests, holds a bunch of tags. This is primarily of use for creating groups of related tags, and the example implementation...

Now _that_ I don't know about quite yet! I did spot yesterday that it seems to be putting them in an undesirable order. It seems to depend on how the...

Attribute order should be fixed in be6559e9. At least, for core-defined helper widgets as far as we can. For custom built ones, it'll render the attributes in the order given....

810cf759 adds select list support. Examples: ``` php $optset = array( 'banana' => 'Banana', 'strawberry' => 'Strawberry', 'vanilla' => 'Vanilla', 'chocolate' => 'Chocolate', ); $select = Txp::get('\Textpattern\Widget\Select', 'flavour_love', $optset, 'banana,...

I should mention 3c03989a here, which introduces something we don't currently have in our arsenal: OptGroups. Here's an example if you want to directly build a grouped select list: ```...