phpDoc header and some docu

This commit is contained in:
Ralf Becker 2006-07-09 07:14:01 +00:00
parent 8541487029
commit 8f5467044a

View File

@ -1,16 +1,13 @@
<?php <?php
/**************************************************************************\ /**
* eGroupWare - exporting contacts as csv file * * Addressbook - export to csv
* http://www.egroupware.org * *
* Written and (c) 2006 Ralf Becker <RalfBecker-AT-outdoor-training.de> * * @link www.egroupware.org
* ------------------------------------------------------------------------ * * @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
* This program is free software; you can redistribute it and/or modify it * * @copyright (c) 2006 by Ralf Becker <RalfBecker-AT-outdoor-training.de>
* under the terms of the GNU General Public License as published by the * * @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* Free Software Foundation; either version 2 of the License, or (at your * * @version $Id$
* option) any later version. * */
\**************************************************************************/
/* $Id$ */
/** /**
* export to csv * export to csv
@ -37,7 +34,11 @@ class csv_export
} }
/** /**
* Create a csv export * Exports some contacts as CSV: download or write to a file
*
* @param array $ids contact-ids
* @param array $fields
* @param string $file filename or null for download
*/ */
function export($ids,$fields,$file=null) function export($ids,$fields,$file=null)
{ {