本文整理汇总了PHP中messages::prjDialogModifiedNotification方法的典型用法代码示例。如果您正苦于以下问题:PHP messages::prjDialogModifiedNotification方法的具体用法?PHP messages::prjDialogModifiedNotification怎么用?PHP messages::prjDialogModifiedNotification使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类messages
的用法示例。
在下文中一共展示了messages::prjDialogModifiedNotification方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _admEditPrjDialogSaveForm
/**
* Сохранение комментария к предложениям по проектам
*
* @param object $objResponse xajaxResponse
* @param string $rec_id идентификатор записи
* @param string $rec_type тип записи
* @param array $aForm массив данных
* @param string $sDrawFunc имя функции для выполнения после сохранения
*/
function _admEditPrjDialogSaveForm(&$objResponse, $rec_id = '', $rec_type = '', $aForm = array(), $sDrawFunc = '')
{
require_once $_SERVER['DOCUMENT_ROOT'] . '/classes/projects_offers_dialogue.php';
require_once $_SERVER['DOCUMENT_ROOT'] . '/classes/user_content.php';
require_once $_SERVER['DOCUMENT_ROOT'] . '/classes/messages.php';
$bValid = true;
if (!trim($aForm['post_text'])) {
$bValid = false;
$sParent = $sDrawFunc == 'stream0' || $sDrawFunc == 'stream1' || $sDrawFunc == 'stream2' ? 'parent.' : '';
$objResponse->script("{$sParent}\$('adm_edit_err_msg').set('html', 'Поле заполнено некорректно.'); ");
$objResponse->script("{$sParent}\$('div_adm_edit_err_msg').setStyle('display', '');");
$objResponse->script("{$sParent}adm_edit_content.disabled = false; {$sParent}adm_edit_content.button();");
}
if ($bValid) {
$sReason = _parseReason($aForm['user_id'], $aForm['adm_edit_text']);
$pod = new projects_offers_dialogue();
$po_text = antispam(trim($aForm['post_text']));
$po_text = preg_replace("/(\r\n|\r|\n){3,100}/i", "\r\n\r\n", $po_text);
$error = $pod->SaveDialogueMessage($aForm['user_id'], $po_text, $rec_id, $aForm['po_id'], false, $_SESSION['uid'], $sReason);
messages::prjDialogModifiedNotification($aForm['user_id'], $aForm['project_id'], $po_text, $sReason);
$content_id = user_content::MODER_PRJ_DIALOG;
_admEditAfterAll($objResponse, $content_id, $rec_id, $rec_type, $sDrawFunc, $aForm);
}
}