FluxBB\Web\Controllers\PostController::edit PHP Méthode

edit() public méthode

public edit ( )
    public function edit()
    {
        try {
            $result = $this->execute('edit.post');
            $post = $result['post'];
            return $this->redirectTo('viewpost', ['id' => $post->id])->withMessage(trans('fluxbb::post.edit_redirect'));
        } catch (ValidationFailed $e) {
            return $this->redirectTo('post_edit')->withInput()->withErrors($e);
        }
    }