PDA

View Full Version : Extend validation of posts


Julchen
07-13-2011, 05:33 PM
Hi,

I fiddled around for hours but I'm stumped :confused:

What I'm trying to do is extend the validation of posts and display an error message (if necessary) similar to the 'tooshort' thingy.

In fact, it should look exactly like the page you get when the 'tooshort' error occurs - error message on top (mine will be rather long and comes as a table) and the editor below with a copy of the rejected message.

All I mananged so far is to hook into newreply_post_start and display a 'standard_error'. But that would require the user to return to the previous page after memorizing all the helpful comments. Not so nice :rolleyes:

Any hint would be greatly appreciated :)

kh99
07-13-2011, 05:44 PM
If you create a plugin using hook newpost_process you can check the message text and add to the $errors array, and it will do what you describe. The code is in includes/functions_newpost.php, and the post text is in $post['message']; so something like:

if (some test on $post['message'] fails)
$errors[] = "Some test failed.";


I can't remember if you need to call return after that or not. Try it without and see what happens.

Julchen
07-13-2011, 06:04 PM
Yay!

$errors did it, no return required

Thanks :D