Service Twitter

L'utilisation des widget twitter n'est plus supportée. La variable twitterWidgetId a donc été supprimée du rendu de ce service. Si vous le surchargez, vous devez supprimer les tests sur cette variable, ainsi que son utilisation dans le lien .twitter-timeline.

Exemple :

<xsl:template name="common-service-body-nonempty-content-content"> 
  <xsl:choose> 
    <xsl:when test="normalize-space($twitterWidgetId) != ''"> 
      <a class="twitter-timeline" href="https://twitter.com/{$username}" data-widget-id="{$twitterWidgetId}" data-screen-name="{$username}"> 
        <xsl:if test="normalize-space($max) != ''"> 
          <xsl:attribute name="data-tweet-limit"><xsl:value-of select="$max"/></xsl:attribute> 
        </xsl:if> 
        <i18n:translate> 
          <i18n:text i18n:key="PLUGINS_SOCIAL_NETWORKING_TWITTER_STREAM"/> 
          <i18n:param name="username"><xsl:value-of select="$username"/></i18n:param> 
        </i18n:translate> 
      </a> 
    </xsl:when> 
    <xsl:when test="$rendering-context = 'back'"> 
      <xsl:call-template name="display-bo-warning-message"> 
        <xsl:with-param name="titleI18nKey" select="'plugin.socialnetworking:PLUGINS_SOCIAL_NETWORKING_TWITTER_WARNINGS'"/> 
        <xsl:with-param name="htmlMessage"><i18n:text i18n:key="PLUGINS_SOCIAL_NETWORKING_TWITTER_WARNING_NO_WIDGET_ID"/></xsl:with-param> 
      </xsl:call-template> 
    </xsl:when> 
  </xsl:choose> 
</xsl:template> 

devient

<xsl:template name="common-service-body-nonempty-content-content"> 
  <a class="twitter-timeline" href="https://twitter.com/{$username}"> 
    <xsl:if test="normalize-space($max) != ''"> 
      <xsl:attribute name="data-tweet-limit"><xsl:value-of select="$max"/></xsl:attribute> 
    </xsl:if> 
    <i18n:translate> 
      <i18n:text i18n:key="PLUGINS_SOCIAL_NETWORKING_TWITTER_STREAM"/> 
      <i18n:param name="username"><xsl:value-of select="$username"/></i18n:param> 
    </i18n:translate> 
  </a> 
</xsl:template> 

<xsl:choose /> a été supprimé, ainsi que les attributs data-widget-id et et data-screen-name.

Retour en haut

Social networking