0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
webcalendar
/
1.2.3-0
/
standard
/
htdocs
/
includes
/
classes
/
[
Home
]
File: CommentList.class
<?php /** * Represents a list of Doc comment objects. * * @author Craig Knudsen * @copyright Craig Knudsen, <cknudsen@cknudsen.com>, http://www.k5n.us/ * @license http://www.gnu.org/licenses/gpl.html GNU GPL * @version $Id: CommentList.class,v 1.3.2.2 2007/08/06 02:28:27 cknudsen Exp $ * @package WebCalendar * @subpackage Doc */ /** * A list of Doc comment objects. */ class CommentList extends DocList { /** * Creates a new attachment list for the specified event. * * @parm int $event_id The event id * @return AttachmentList The new AttachmentList object * @access public */ function CommentList ( $event_id ) { parent::DocList ( $event_id, 'C' ); } } ?>