mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
ENHANCEMENT: allow PageCommentForm to store all users data, rather than hardcoding the fields
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/branches/2.4@111449 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
b76b6f61d2
commit
4cc09f2a39
@ -214,15 +214,14 @@ class PageCommentInterface extends RequestHandler {
|
||||
Requirements::javascript(CMS_DIR . '/javascript/PageCommentInterface.js');
|
||||
}
|
||||
|
||||
// Load the data from Session
|
||||
$form->loadDataFrom(array(
|
||||
"Name" => Cookie::get("PageCommentInterface_Name"),
|
||||
"Comment" => Cookie::get("PageCommentInterface_Comment"),
|
||||
"CommenterURL" => Cookie::get("PageCommentInterface_CommenterURL")
|
||||
));
|
||||
|
||||
$this->extend('updatePageCommentForm', $form);
|
||||
|
||||
// Load the users data from a cookie
|
||||
if($cookie = Cookie::get("PageCommentInterface_Data")) {
|
||||
Debug::show(unserialize($cookie));
|
||||
$form->loadDataFrom(unserialize($cookie));
|
||||
}
|
||||
|
||||
return $form;
|
||||
}
|
||||
|
||||
@ -269,11 +268,10 @@ class PageCommentInterface extends RequestHandler {
|
||||
*/
|
||||
class PageCommentInterface_Form extends Form {
|
||||
function postcomment($data) {
|
||||
// Spam filtering
|
||||
Cookie::set("PageCommentInterface_Name", $data['Name']);
|
||||
Cookie::set("PageCommentInterface_CommenterURL", $data['CommenterURL']);
|
||||
Cookie::set("PageCommentInterface_Comment", $data['Comment']);
|
||||
Debug::show($data);
|
||||
Cookie::set("PageCommentInterface_Data", serialize($data));
|
||||
|
||||
// Spam filtering
|
||||
if(SSAkismet::isEnabled()) {
|
||||
try {
|
||||
$akismet = new SSAkismet();
|
||||
@ -331,7 +329,8 @@ class PageCommentInterface_Form extends Form {
|
||||
$comment->NeedsModeration = PageComment::moderationEnabled();
|
||||
$comment->write();
|
||||
|
||||
Cookie::set("PageCommentInterface_Comment", '');
|
||||
unset($data['Comment']);
|
||||
Cookie::set("PageCommentInterface_Data", serialize($data));
|
||||
|
||||
$moderationMsg = _t('PageCommentInterface_Form.AWAITINGMODERATION', "Your comment has been submitted and is now awaiting moderation.");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user