1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-06-26 03:30:48 +03:00

fix #173 Дополнительный хук

This commit is contained in:
Mzhelskiy Maxim 2014-12-25 16:43:44 +07:00
parent ff885c46a3
commit ee45c94358

View file

@ -315,6 +315,7 @@ class ActionContent extends Action
*/
$oTopic->setDateEditContent(date('Y-m-d H:i:s'));
$this->Hook_Run('topic_edit_validate_before', array('oTopic'=>$oTopic));
if ($oTopic->_Validate()) {
$oBlog = $oTopic->getBlog();
/**
@ -344,6 +345,7 @@ class ActionContent extends Action
$oTopic->setTextShort('');
$oTopic->setTextSource('');
}
$this->Hook_Run('topic_edit_before', array('oTopic'=>$oTopic,'oBlog'=>$oBlog));
/**
* Сохраняем топик
*/
@ -449,6 +451,7 @@ class ActionContent extends Action
$oTopic->setForbidComment(1);
}
$this->Hook_Run('topic_add_validate_before', array('oTopic'=>$oTopic));
if ($oTopic->_Validate()) {
$oBlog = $oTopic->getBlog();
/**
@ -478,6 +481,7 @@ class ActionContent extends Action
$oTopic->setTextSource('');
}
$this->Hook_Run('topic_add_before', array('oTopic' => $oTopic, 'oBlog' => $oBlog));
if ($this->Topic_AddTopic($oTopic)) {
$this->Hook_Run('topic_add_after', array('oTopic' => $oTopic, 'oBlog' => $oBlog));
/**