當前位置: 首頁>>代碼示例>>PHP>>正文


PHP cmsUser::getNewMessages方法代碼示例

本文整理匯總了PHP中cmsUser::getNewMessages方法的典型用法代碼示例。如果您正苦於以下問題:PHP cmsUser::getNewMessages方法的具體用法?PHP cmsUser::getNewMessages怎麽用?PHP cmsUser::getNewMessages使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在cmsUser的用法示例。


在下文中一共展示了cmsUser::getNewMessages方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: mod_usermenu

function mod_usermenu($module_id, $cfg)
{
    $inCore = cmsCore::getInstance();
    $inUser = cmsUser::getInstance();
    $is_billing = $inCore->isComponentInstalled('billing');
    $is_audio = $inCore->isComponentInstalled('audio');
    $is_video = $inCore->isComponentInstalled('video');
    cmsPage::initTemplate('modules', 'mod_usermenu')->assign('avatar', $inUser->imageurl)->assign('nickname', $inUser->nickname)->assign('login', $inUser->login)->assign('id', $inUser->id)->assign('newmsg', cmsUser::getNewMessages($inUser->id))->assign('is_can_add', cmsUser::isUserCan('content/add'))->assign('is_admin', $inUser->is_admin)->assign('is_editor', cmsUser::userIsEditor())->assign('cfg', $inCore->loadModuleConfig($module_id))->assign('users_cfg', $inCore->loadComponentConfig('users'))->assign('is_billing', $is_billing)->assign('is_audio', $is_audio)->assign('is_video', $is_video)->assign('audio_count', $is_audio ? $inUser->audio_count : 0)->assign('video_count', $is_video ? $inUser->video_count : 0)->assign('balance', $is_billing ? $inUser->balance : 0)->display('mod_usermenu.tpl');
    return true;
}
開發者ID:4uva4ek,項目名稱:svato,代碼行數:10,代碼來源:module.php

示例2: date

                            <tr>
                                <td width="230" align="left" valign="middle" style="padding-left:20px; padding-top:5px;">
                                    <a href="/admin/" style="color: #fff;">
                                        SocAto
                                    </a>
                                </td>
                                <td width="120">
                                    <div class="jdate"><?php 
echo date('d') . ' ' . $_LANG['MONTH_' . date('m')];
?>
</div>
                                    <div class="jclock">00:00:00</div>
                                </td>
                                <td>
                                    <?php 
$new_messages = cmsUser::getNewMessages($inUser->id);
if ($new_messages['total']) {
    $msg_link = '<a href="/users/' . $inUser->id . '/messages.html" style="color:yellow">' . $_LANG['AD_NEW_MSG'] . ' (' . $new_messages['total'] . ')</a>';
} else {
    $msg_link = '<span>' . $_LANG['NO'] . ' ' . $_LANG['NEW_MESSAGES'] . '</span>';
}
?>
                                    <div class="juser"><?php 
echo $_LANG['AD_YOU'];
?>
 &mdash; <a href="<?php 
echo cmsUser::getProfileURL($inUser->login);
?>
" target="_blank" title="<?php 
echo $_LANG['AD_GO_PROFILE'];
?>
開發者ID:4uva4ek,項目名稱:svato,代碼行數:31,代碼來源:template.php


注:本文中的cmsUser::getNewMessages方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。