本文整理匯總了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);
}
}