本文整理汇总了PHP中notifications::getEmpGroupTip方法的典型用法代码示例。如果您正苦于以下问题:PHP notifications::getEmpGroupTip方法的具体用法?PHP notifications::getEmpGroupTip怎么用?PHP notifications::getEmpGroupTip使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类notifications
的用法示例。
在下文中一共展示了notifications::getEmpGroupTip方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: setReadAllProject
function setReadAllProject()
{
session_start();
$objResponse = new xajaxResponse();
if (is_emp()) {
projects::SetReadAll(get_uid(false));
$tip = notifications::getEmpGroupTip();
$objResponse->script("\n \$('new_offers_content').dispose();\n \$\$('.new-offer-image').each(function(elm) {\n var span = new Element('span', {'html': \$(elm).getNext().get('html')});\n \$(elm).getNext().dispose();\n \$(elm).grab(span, 'after');\n \$(elm).dispose();\n });\n \n var mt = \$\$('.b-user-menu-tasks-clause a');\n if(mt)\n {\n mt.set('title','{$tip['tip']}');\n var mt_cnt = mt.getElement('.b-user-menu-clause-quantity'); \n if(mt_cnt){" . ($tip['count'] > 0 ? "mt_cnt.set('html',{$tip['count']})" : "mt_cnt.destroy();") . "}\n }\n ");
}
return $objResponse;
}