markhuot / craft-data
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:craft-plugin
Requires
- craftcms/cms: ^4.2
- hashids/hashids: ^4.1
- markhuot/data: ^1.0
Requires (Dev)
- markhuot/craft-pest: @dev
README
Automatically convert POST data over to strongly typed data objects. Attaching an attribute to your controller method is all it takes to do the conversion.
class EntryController extends Controller { #[BodyParams(EntryUpdateParams::class)] function actionUpdate() { // Now $this->getData() will return an `EntryUpdateParams` with all the // data copied over from the POST in to the class } }
The data object uses public properties and PHP type hints to map everything. See markhuot/data for more detail on mapping.
class EntryUpdateParams { public int $elementId; public ?string $title; public ?string $slug; function getElement() { return \Craft::$app->elements->getElementById($this->elementId); } }
All validation rules fromm markhuot/data work as well so you can ensure specific fields match the validation rules you expect.
use Symfony\Component\Validator\Constraints as Assert; class EntryUpdateParams { #[Assert\NotNull] public int $elementId; #[Assert\NotEmpty] public string $title; #[Assert\Regex('/[a-z]0-9_-/i')] public ?string $slug; function getElement() { return \Craft::$app->elements->getElementById($this->elementId); } }