本文整理汇总了PHP中Chat::countNewMessage方法的典型用法代码示例。如果您正苦于以下问题:PHP Chat::countNewMessage方法的具体用法?PHP Chat::countNewMessage怎么用?PHP Chat::countNewMessage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Chat
的用法示例。
在下文中一共展示了Chat::countNewMessage方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
<li>
<a href="{{ URL.'/admin/lock' }}">
<i class="icon-lock"></i> Lock Screen </a>
</li>
<li>
<a href="{{ URL.'/admin/logout' }}">
<i class="icon-key"></i> Log Out </a>
</li>
</ul>
</li>
<!-- END USER LOGIN DROPDOWN -->
<!-- BEGIN QUICK SIDEBAR TOGGLER -->
<!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte -->
@if( 1 == 2 )
<?php
$count = Chat::countNewMessage();
?>
<li class="dropdown dropdown-quick-sidebar-toggler">
<a href="javascript:;" class="dropdown-toggle">
<i class="fa fa-fw fa-comment-o"></i>
<span @if($count) class="badge badge-default" @endif id="message-count">{{ $count ? $count : '' }}</span>
</a>
</li>
@endif
<!-- END QUICK SIDEBAR TOGGLER -->
</ul>
</div>
<!-- END TOP NAVIGATION MENU -->
</div>
<!-- END HEADER INNER -->
</div>
示例2: updateRead
public function updateRead()
{
if (Input::has('chatter_id')) {
$chatterId = Input::get('chatter_id');
Chat::updateRead($chatterId);
return Response::json(Chat::countNewMessage());
}
}