Backend\Modules\Profiles\Actions\Delete::execute PHP Метод

execute() публичный Метод

Execute the action.
public execute ( )
    public function execute()
    {
        // get parameters
        $this->id = $this->getParameter('id', 'int');
        // does the item exist
        if ($this->id !== null && BackendProfilesModel::exists($this->id)) {
            // call parent, this will probably add some general CSS/JS or other required files
            parent::execute();
            // get profile
            $profile = BackendProfilesModel::get($this->id);
            // already deleted? Prolly want to undo then
            if ($profile['status'] === 'deleted') {
                // set profile status to active
                BackendProfilesModel::update($this->id, array('status' => 'active'));
                // trigger event
                BackendModel::triggerEvent($this->getModule(), 'after_reactivate', array('id' => $this->id));
                // redirect
                $this->redirect(BackendModel::createURLForAction('Index') . '&report=profile-undeleted&var=' . rawurlencode($profile['email']) . '&highlight=row-' . $profile['id']);
            } else {
                // delete profile
                BackendProfilesModel::delete($this->id);
                // trigger event
                BackendModel::triggerEvent($this->getModule(), 'after_delete_profile', array('id' => $this->id));
                // redirect
                $this->redirect(BackendModel::createURLForAction('Index') . '&report=profile-deleted&var=' . rawurlencode($profile['email']) . '&highlight=row-' . $profile['id']);
            }
        } else {
            $this->redirect(BackendModel::createURLForAction('Index') . '&error=non-existing');
        }
    }
Delete