本文整理汇总了PHP中notifications::getSbrTip方法的典型用法代码示例。如果您正苦于以下问题:PHP notifications::getSbrTip方法的具体用法?PHP notifications::getSbrTip怎么用?PHP notifications::getSbrTip使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类notifications
的用法示例。
在下文中一共展示了notifications::getSbrTip方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __paramInit
$type_payment = __paramInit('int', NULL, 'type_payment');
if ($type_payment > 0) {
$sbr->setTypePayment($type_payment);
}
$sbr_stage = $sbr->getStages();
foreach ($sbr_stage as $stage) {
$sbr->setUserReqvHistory($sbr->uid, intval($stage->data['id']), 0);
// Сохраняем для всех этапов, согласие исполнителя
}
//header_location_exit("/".sbr::NEW_TEMPLATE_SBR."/?id={$id}");
header_location_exit("/" . sbr::NEW_TEMPLATE_SBR . "/?site=agreed&sbr_id={$id}");
}
}
} else {
if ($refuse) {
$reason = __paramInit('string', null, 'frl_refuse_reason');
//stripslashes($_POST['frl_refuse_reason']); // !!!
$reason = substr(pg_escape_string($reason), 0, 512);
if ($sbr->refuse($reason)) {
header_location_exit("/" . sbr::NEW_TEMPLATE_SBR . "/?id={$id}");
}
}
}
}
}
$anchor = __paramInit('int', 'id');
$anchor = __paramInit('int', 'id');
$_SESSION['sbr_tip'] = notifications::getSbrTip();
$sbr->setLastView();
break;
}
示例2: __paramInit
if ($action == 'status_action') {
$resend = __paramInit('bool', NULL, 'resend');
$del = __paramInit('bool', NULL, 'del');
$cancel = __paramInit('bool', NULL, 'cancel');
$id = __paramInit('int', NULL, 'id');
$ok = true;
if ($resend) {
$ok = $sbr->resendCanceled($id);
} else {
if ($cancel) {
$ok = $sbr->cancel($id);
} else {
if ($del) {
$ok = $sbr->delete($id);
}
}
}
if ($ok) {
header_location_exit('/norisk2/' . ($del ? '' : "?id={$id}"));
}
}
$anchor = __paramInit('int', 'id');
if (!($sbr_currents = $sbr->getCurrents())) {
header_location_exit('/promo/sbr/');
} else {
$sbr->getUserReqvs();
}
$_SESSION['sbr_tip_old'] = notifications::getSbrTip('old');
$sbr->setLastView('old');
break;
}
示例3: getAllSbrTip
/**
* Обьединяем события по старой и новой безопасных сделок
*
* @return string
*/
public static function getAllSbrTip()
{
$default = array('count' => 0, 'tip' => 'Список Безопасных сделок', 'alert' => FALSE);
$sbrTip = notifications::getSbrTip();
if (isset($sbrTip['count']) && $sbrTip['count'] > 0) {
$default['count'] = $sbrTip['count'];
}
$sbrOldTip = notifications::getSbrTip('old');
if (isset($sbrOldTip['count']) && $sbrOldTip['count'] > 0) {
$default['count'] += $sbrOldTip['count'];
}
if ((int) $default['count'] === 1) {
$default['tip'] = 'Новое событие в «Безопасной Сделке»';
$default['alert'] = TRUE;
} elseif ($default['count'] > 1) {
$default['tip'] = $default['count'] . ' ' . ending($default['count'], 'новое событие', 'новых события', 'новых событий') . ' в ваших «Безопасных Сделках»';
}
return $default;
}