Prado\Web\UI\WebControls\TXmlTransform::__construct PHP Method

__construct() public method

Initializes the TXmlTransform object and ensure that the XSL extension is available
public __construct ( )
    public function __construct()
    {
        if (!class_exists('XSLTProcessor', false)) {
            throw new TConfigurationException('xmltransform_xslextension_required');
        }
    }