Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
/**
3
 * Outputs channels list of a PEAR install
4
 *
5
 * PHP versions 4 and 5
6
 *
7
 * @category PEAR
8
 * @package  PEAR_Info
9
 * @author   Laurent Laville <pear@laurent-laville.org>
10
 * @license  http://www.php.net/license/3_01.txt  PHP License 3.01
11
 * @version  CVS: $Id: pear_info6.php,v 1.3 2007/12/15 16:27:23 farell Exp $
12
 * @link     http://pear.php.net/package/PEAR_Info
13
 * @ignore
14
 */
15
 
16
require_once 'PEAR/Info.php';
17
 
18
$options = array('resume' =>  PEAR_INFO_GENERAL | PEAR_INFO_CHANNELS |
19
               PEAR_INFO_FULLPAGE,
20
               'channels' => array());
21
 
22
$info = new PEAR_Info('', '', '', $options);
23
$info->display();
24
?>