<?php if($inUser->is_admin){ ?> <a href="/admin">Админ</a></li> <?php } ?> <?php if($inUser->id){ ?> <a href="/users/<?php echo $uid ?>/photoalbum.html">Фото</a> <a href="/logout">Выход</a> <?php } ?>
Как сделать ссылку на "добавить запись в блог"?
<?php if($inUser->is_admin){ ?> <a href="/admin">Админ</a></li> <?php } ?> <?php if($inUser->id){ ?> <a href="/users/<?php echo $uid ?>/photoalbum.html">Фото</a> <a href="/logout">Выход</a> <?php } ?>
$inCore->includeFile('components/users/includes/usercore.php'); } $newmsg = cmsUser::isNewMessages($inUser->id); $blog = usrBlog($inUser->id); $blog_href = ($blog['id']) ? '/blogs/'.$blog['seolink'] : '/blogs/createblog.html'; $avatar = '<img src="/images/users/avatars/small/'.$inUser->imageurl.'" />'; $is_billing = $inCore->isComponentInstalled('billing'); $balance = $is_billing ? $inUser->balance : 0;
а так в коде модуля посмотрите как реализовано и продублируйте
$inCore->includeFile('components/users/includes/usercore.php'); } $newmsg = cmsUser::isNewMessages($inUser->id); $blog = usrBlog($inUser->id); $blog_href = ($blog['id']) ? '/blogs/'.$blog['seolink'] : '/blogs/createblog.html'; $avatar = ''; $is_billing = $inCore->isComponentInstalled('billing'); $balance = $is_billing ? $inUser->balance : 0;
<?php if($inUser->id){ ?> <a href="/blogs/.....">Ссылка на мой блог</a></li> <?php } ?>
<?php if($inUser->id){ ?> <?php $inCore->includeFile('components/users/includes/usercore.php'); ?> <?php } ?> <?php $blog = usrBlog($inUser->id); ?> <?php $blog_href = ($blog['id']) ? '/blogs/'.$blog['seolink'] : '/blogs/createblog.html'; ?> <a href="<?php $blog_href ?>">{$LANG.USERMENU_MY_BLOG}</a> <?php } ?>
<li> <?php if($inUser->id){ ?> <?php $inCore->includeFile('components/users/includes/usercore.php'); ?> <?php } ?> <?php $blog = usrBlog($inUser->id); ?> <?php $blog_href = ($blog['id']) ? '/blogs/'.$blog['seolink'] : '/blogs/createblog.html'; ?> <a href="<?php $blog_href ?>">Блог</a> <?php } ?> </li>
<a href="<?php echo $blog_href ?>">Блог</a>