legacy-knowledge-base
公開されました Jun. 30, 2025

カスタムテーマからログアウトする方法

written-by

Jose L. Bango

How To articles are not official guidelines or officially supported documentation. They are community-contributed content and may not always reflect the latest updates to Liferay DXP. We welcome your feedback to improve How To articles!

While we make every effort to ensure this Knowledge Base is accurate, it may not always reflect the most recent updates or official guidelines.We appreciate your understanding and encourage you to reach out with any feedback or concerns.

legacy-article

learn-legacy-article-disclaimer-text

問題

  • カスタムテーマからログアウトしたい。

環境

  • Liferay DXP 7.0+

解像度

  • c/portal/layoutを直接呼び出さないようにする。 その代わりに、frontend-theme-unstyledbase themeのinit.ftlで初期化されたsign_out_url変数を利用することができます(コード参照)。 例えば、こんなことができる:
    <#if show_sign_out>
    <a class="custom-link" href="${sign_out_url}">
    <div class="custom-link-text">${sign_out_text}</div>
    </a>
    </#if>
  • あるいは、ThemeDisplay.getURLSignOut()メソッドを使用して適切なURLを取得することもできます。
did-this-article-resolve-your-issue

legacy-knowledge-base