Best way to delete previous record?

Status
This content is read-only, or is not open for further replies.

grantus

Guest
offline
I have an upload form and users can upload a file, but I would like to check on save if they already have an entry, if so then delete it.

So I'm trying to do it in my actionSave:

Code:

Code:
public function actionSave(ParameterBag $params) {
    // validate form inputs
    
    // check if user already has an entry, if so delete it
}

I already have a functioning actionDelete:

Code:

Code:
$plugin = $this->plugin('XF:Delete');
return $plugin->actionDelete(
$signup,
$this->buildLink('signup/delete'...

Read more

Continue reading...
 
Liked by:
Status
This content is read-only, or is not open for further replies.
Top Bottom