DDR Mega2DNN xslt |硬编码查看全部'每个ul的链接

时间:2017-10-03 09:09:11

标签: xml xslt ddrmenu

我现在正在为一些网站使用Mega2DNN DDR菜单模板,并希望添加轻微的自定义而不影响菜单的动态特性。基本上我想列出所有页面及其子项作为列表中的标准,然后在每个ul的末尾添加一个硬编码的操作按钮/链接,重定向到ul的父页面。此外,如果可能的话,按照以下基本模型,将整个号召性用语链接到整个大型菜单项的父页面:

enter image description here

下面是我的代码模板,如果不以一种非常黑客的方式试图解决这个问题,那么我的问题会更简单吗?

    <?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="html"/>
  <xsl:param name="ControlID" />
  <xsl:param name="Options" />
  <xsl:param name="subMenuColumns">1</xsl:param>
  <xsl:param name="subpointer"><![CDATA[]]></xsl:param>
  <xsl:param name="pointer"><![CDATA[]]></xsl:param>
  <xsl:param name="startUl"><![CDATA[<ul>]]></xsl:param>
  <xsl:param name="endUl"><![CDATA[</ul>]]></xsl:param>
  <xsl:template match="/*">
    <xsl:apply-templates select="root" />
  </xsl:template>
  <xsl:template match="root">
    <ul class="megamenu" id="megamenu">
      <xsl:apply-templates select="node">
        <xsl:with-param name="level" select="0"/>
      </xsl:apply-templates>
    </ul>
  </xsl:template>
  <xsl:template match="node">
    <xsl:param name="level" />
    <xsl:choose>
      <xsl:when test="$level=0">
        <li>
          <xsl:attribute name="class">
            level0 <xsl:if test="@breadcrumb = 1">current</xsl:if>
          </xsl:attribute>
          <a>
            <xsl:attribute name="class">
              level0 <xsl:if test="@breadcrumb = 1">current</xsl:if>
            </xsl:attribute>
            <xsl:choose>
              <xsl:when test="@enabled = 1">
                <xsl:attribute name="href">
                  <xsl:value-of select="@url"/>
                </xsl:attribute>
              </xsl:when>
              <xsl:otherwise>
                <xsl:attribute name="href">#</xsl:attribute>
                <xsl:attribute name="onclick">return false</xsl:attribute>
              </xsl:otherwise>
            </xsl:choose>
            <xsl:value-of select="@text" />
            <xsl:if test="node">
              <xsl:value-of select="$pointer" disable-output-escaping="yes"/>
            </xsl:if>
          </a>
          <xsl:if test="node">
            <div class="sub">
                <div class="container">
                  <xsl:apply-templates select="node">
                    <xsl:with-param name="level" select="$level + 1" />
                  </xsl:apply-templates>
                </div>
            </div>
          </xsl:if>
        </li>
      </xsl:when>

      <xsl:when test="$level=1">
        <ul class="megamenusubcontent">
          <li class="subheader">
            <h2>
              <a>
                <xsl:choose>
                  <xsl:when test="@enabled = 1">
                    <xsl:attribute name="href">
                      <xsl:value-of select="@url"/>
                    </xsl:attribute>
                  </xsl:when>
                  <xsl:otherwise>
                    <xsl:attribute name="href">#</xsl:attribute>
                    <xsl:attribute name="onclick">return false</xsl:attribute>
                  </xsl:otherwise>
                </xsl:choose>
                <xsl:value-of select="@text" />
              </a>
            </h2>
          </li>

          <xsl:if test="node">
            <xsl:apply-templates select="node">
              <xsl:with-param name="level" select="$level + 1" />
            </xsl:apply-templates>
          </xsl:if>
        </ul>
      </xsl:when>
      <xsl:otherwise>
        <li class="sublink">
          <a>
            <xsl:choose>
              <xsl:when test="@enabled = 1">
                <xsl:attribute name="href">
                  <xsl:value-of select="@url"/>
                </xsl:attribute>
              </xsl:when>
              <xsl:otherwise>
                <xsl:attribute name="href">#</xsl:attribute>
                <xsl:attribute name="onclick">return false</xsl:attribute>
              </xsl:otherwise>
            </xsl:choose>
            <xsl:value-of select="@text" />
          </a>
        </li>      
        <xsl:if test="node">
          <xsl:apply-templates select="node">
            <xsl:with-param name="level" select="$level + 1" />
          </xsl:apply-templates>
        </xsl:if>
      </xsl:otherwise>
    </xsl:choose>
  </xsl:template>

</xsl:stylesheet>

感谢任何帮助,thx

1 个答案:

答案 0 :(得分:0)

我有一个解决方案。创建“查看所有”页面并将它们设置为隐藏,然后将IncludeHidden =“True”添加到ddr菜单标记中,这样只会使这些页面在大型菜单中可见,因此它们不会出现在网站的左侧菜单中