audit-legacy-controller
Instructions
- Open
controllers/admin/Admin{Domain}sController.php— read the full file. - List every public action method:
renderList,renderForm,postProcess,ajaxProcess*, any custom method. - For each form field in
renderForm(), record: field name, type (text/select/checkbox/file), whether it is translatable, whether it is required. - Record every DB column accessed in
getList()orrenderList()— these map to grid columns. - Record every filter defined in
renderList()— these map to grid filter types. - List every
Hook::exec()call with the hook name and arguments passed. - Note any multistore-specific branches (
if (Shop::isFeatureActive())). - Record whether the controller handles file uploads (logo, image).
- Output: a structured field map grouped by (form fields, list columns, filters, hooks, actions).
Rules
- Never modify the controller file — this is a read-only audit
- Note every
ObjectModelmethod called (save(),update(),delete()) to inform handler implementation - Flag any field that uses
Tools::getValue()directly without validation — these need ValueObject wrapping - Record position/sort fields explicitly — they trigger
create-position-column(G)