<?php 

  $error 
''
  if (!@
class_exists('DOMDocument')) { 
    
$error .= 'Unable to load DOMDocument class. Failure.<br/>'
  } 
  if (!
extension_loaded('xsl') || !@class_exists('XSLTProcessor')) { 
    
$error .= 'Could not load PHP XSL extension. Installing the PHP XSL extension is easy, please contact your server administrator to install libxslt. In some cases PHP might need to be recompiled to add XSL support. You will then be ready to use XTENTO integrations and extensions.'
  } 
  if (empty(
$error)) { 
    echo 
"PHP XSL support is installed. You are ready to use an XTENTO extension or integration."
  } else { 
    echo 
"Error:<br/>".$error
  } 

?>