screenshot

  1. <?php
  2. /**
  3.  * PEAR_Info Request #13741 : show list if potential config files
  4.  *
  5.  * @link http://pear.php.net/bugs/bug.php?id=13741
  6.  *
  7.  * Use the new selectors of custom stylesheet "blueskin.css"
  8.  *
  9.  * dl { margin: 0 }
  10.  *
  11.  * dd.cfg_found { color: blue; }
  12.  * dd.cfg_notfound { color: navy; font-weight: bold; }
  13.  *
  14.  * dd.cfg_found:before { content: "OK => "; }
  15.  * dd.cfg_notfound:before { content: "NA => "; }
  16.  *
  17.  */
  18.  
  19. require_once 'PEAR/Info.php';
  20.  
  21. $info = new PEAR_Info();
  22. $info->setStyleSheet(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'blueskin.css');
  23. $info->display();
  24. ?>