Re: picoモジュールで記事の先頭にメニューを設置したい。
タツ
投稿数: 2448
作成したメニューの中で現在閲覧しているページがどこなのか分かるように
さらにモジュール名_block_menu_headを以下のように編集してみました。
良いか悪いかは別にしてこれで現在閲覧しているページが分かるようになりました。
さらにモジュール名_block_menu_headを以下のように編集してみました。
<{foreach item=category from=$block.categories}>
<{if $category.id == $smarty.get.cat_id }>
<b>■<{$category.title}>MENU</b>
<{foreach key=key item=content from=$category.contents}>
<{if $block.mod_url|cat:"/"|cat:$content.link == $xoops_url|cat:$smarty.server.REQUEST_URI}>
<div style="border:1px solid #aaa;background:#CCE8F4;padding:1em 1em 0 1em;margin-bottom:3em;padding-bottom: .1em;">
<div>
<ul><{foreach item=content from=$category.contents}>
<{if $smarty.server.QUERY_STRING == 'content_id='|cat:$content.id}>
<li style="background:#fff;margin:5px 0;padding-left:8px;font-weight:700;"><{$content.subject}></li>
<{else}>
<li style="margin:5px 0;"><a href="<{$block.mod_url}>/<{$content.link}>" title="<{$block.lang_lastupdated}>:<{$content.created_time_formatted}>"><{$content.subject}></a></li>
<{/if}>
<{/foreach}>
</ul>
</div>
</div>
<{/if}>
<{/foreach}>
<{/if}>
<{/foreach}>
投票数:30
平均点:6.67
投稿ツリー
-
picoモジュールで記事の先頭にメニューを設置したい。
(タツ, 2019/7/26 11:23)
- Re: picoモジュールで記事の先頭にメニューを設置したい。 (タツ, 2019/8/12 16:21)
- Re: 再考-picoモジュールで記事の先頭にメニューを設置したい。 (タツ, 2023/2/25 5:02)