mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
57 lines
2.4 KiB
HTML
57 lines
2.4 KiB
HTML
<!-- IF not S_IS_BOT and (U_WATCH_TOPIC or U_BOOKMARK_TOPIC or U_BUMP_TOPIC or U_EMAIL_TOPIC or U_PRINT_TOPIC or S_DISPLAY_TOPIC_TOOLS) -->
|
|
<div class="dropdown-container dropdown-button-control topic-tools">
|
|
<span title="{L_TOPIC_TOOLS}" class="button button-secondary dropdown-trigger dropdown-select">
|
|
{{ Icon('font', 'wrench', '', true, 'fas c-button-icon') }}
|
|
<span class="caret">{{ Icon('font', 'caret-down', '', true, 'fas c-button-icon') }}</span>
|
|
</span>
|
|
<div class="dropdown">
|
|
<div class="pointer"><div class="pointer-inner"></div></div>
|
|
<ul class="dropdown-contents">
|
|
<!-- EVENT viewtopic_topic_tools_before -->
|
|
{% if U_WATCH_TOPIC %}
|
|
<li>
|
|
<a href="{{ U_WATCH_TOPIC }}" class="watch-topic-link" title="{{ S_WATCH_TOPIC_TITLE }}" data-ajax="toggle_link" data-toggle-text="{{ S_WATCH_TOPIC_TOGGLE }}" data-toggle-url="{{ U_WATCH_TOPIC_TOGGLE }}" data-update-all=".watch-topic-link">
|
|
{% if S_WATCHING_TOPIC %}
|
|
{{ Icon('font', 'bell', '', true, 'far c-watch-icon is-active') }}
|
|
{{ Icon('font', 'bell-slash', '', true, 'far c-watch-icon') }}
|
|
{% else %}
|
|
{{ Icon('font', 'bell-slash', '', true, 'far c-watch-icon is-active') }}
|
|
{{ Icon('font', 'bell', '', true, 'far c-watch-icon') }}
|
|
{% endif %}
|
|
<span>{S_WATCH_TOPIC_TITLE}</span>
|
|
</a>
|
|
</li>
|
|
{% endif %}
|
|
<!-- IF U_BOOKMARK_TOPIC -->
|
|
<li>
|
|
<a href="{U_BOOKMARK_TOPIC}" class="bookmark-link" title="{L_BOOKMARK_TOPIC}" data-ajax="alt_text" data-alt-text="{S_BOOKMARK_TOGGLE}" data-update-all=".bookmark-link">
|
|
{{ Icon('font', 'bookmark', S_BOOKMARK_TOPIC, false, 'far') }}
|
|
</a>
|
|
</li>
|
|
<!-- ENDIF -->
|
|
<!-- IF U_BUMP_TOPIC -->
|
|
<li>
|
|
<a href="{U_BUMP_TOPIC}" title="{L_BUMP_TOPIC}" data-ajax="true">
|
|
{{ Icon('font', 'turn-up', lang('BUMP_TOPIC'), false) }}
|
|
</a>
|
|
</li>
|
|
<!-- ENDIF -->
|
|
<!-- IF U_EMAIL_TOPIC -->
|
|
<li>
|
|
<a href="{U_EMAIL_TOPIC}" title="{L_EMAIL_TOPIC}">
|
|
{{ Icon('font', 'envelope', lang('EMAIL_TOPIC'), false, 'far') }}
|
|
</a>
|
|
</li>
|
|
<!-- ENDIF -->
|
|
<!-- IF U_PRINT_TOPIC -->
|
|
<li>
|
|
<a href="{U_PRINT_TOPIC}" title="{L_PRINT_TOPIC}" accesskey="p">
|
|
{{ Icon('font', 'print', lang('PRINT_TOPIC'), false) }}
|
|
</a>
|
|
</li>
|
|
<!-- ENDIF -->
|
|
<!-- EVENT viewtopic_topic_tools_after -->
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<!-- ENDIF -->
|