<?php
/**
* PEAR_Info Request #13741 : show list if potential config files
*
* @link http://pear.php.net/bugs/bug.php?id=13741
*
* Use the new selectors of custom stylesheet "blueskin.css"
*
* dl { margin: 0 }
*
* dd.cfg_found { color: blue; }
* dd.cfg_notfound { color: navy; font-weight: bold; }
*
* dd.cfg_found:before { content: "OK => "; }
* dd.cfg_notfound:before { content: "NA => "; }
*
*/
require_once 'PEAR/Info.php';
$info = new PEAR_Info();
$info->setStyleSheet(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'blueskin.css');
$info->display();
?>