CMS Ametys provides integrators with numerous methods accessible from XSLT, facilitating the integration of graphic charters.

  1. How to use these methods
  2. MCC
    1. getMCCValidatedPDF
    2. getMCCCFVUValidationDate

How to use these methods

Add this "mcc" namespace to the header of XSL files as follows:                       

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"   
         ...   
        xmlns:mcc="org.ametys.plugins.odfweb.xslt.MCCXSLTHelper"   
         ...   
        extension-element-prefixes="... mcc ...">  

So that you can call any of the functions defined below, using "ametys:functionName(argument1, argument2)".

MCC

getMCCValidatedPDF

Description:
Retrieves the most recent CFVU-validated MCC PDF file from a container. 

Signature :
AmetysNodeList getMCCValidatedPDF(String containerId)

Arguments:

Name

Type

Description

containerId

String

Container identifier

getMCCCFVUValidationDate

Description:
Retrieves the MCC CFVU validation date from a container. 

Signature :
String getMCCCFVUValidationDate(String containerId)

Arguments:

Name

Type

Description

containerId

String

Container identifier

Back to top