xdebug.php 1.0 KB

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Xdebug error page
  4. *
  5. * PHP 5
  6. *
  7. * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
  8. * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
  9. *
  10. * Licensed under The MIT License
  11. * Redistributions of files must retain the above copyright notice
  12. *
  13. * @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
  14. * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
  15. * @package Cake.TestSuite.templates
  16. * @since CakePHP(tm) v 1.2.0.4433
  17. * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  18. */
  19. ?>
  20. <?php include dirname(__FILE__) . DS . 'header.php'; ?>
  21. <div id="content">
  22. <h2>Xdebug is not installed</h2>
  23. <p>You must install Xdebug to use the CakePHP(tm) Code Coverage Analyzation.</p>
  24. <p><a href="http://www.xdebug.org/docs/install" target="_blank">Learn How To Install Xdebug</a></p>
  25. </div>
  26. <?php
  27. include dirname(__FILE__) . DS . 'footer.php';