Questions tagged [admin-generator]

A feature of the Symfony PHP framework that enables effortless creation of administrative areas within a web application.

Submitting Symfony form to the same URL

Seeking advice on how to create a form with text fields and a preview button that submits the form to the same controller, extracts the values, and populates another form for the template display. As a newbie, I'm looking for clear guidance on the bes ...

protecting symfony batch actions

Here is the configuration from my security.yml: all: is_secure: true new: credentials: [add_ticker_source] edit: credentials: [edit_ticker_source] delete: credentials: [delete_ticker_source] batchDelete: //Is it supposed to be batch_delete? c ...