35 lines
546 B
PHP
35 lines
546 B
PHP
|
<?php
|
||
|
/**
|
||
|
* gantt - File for the gantt class
|
||
|
*
|
||
|
* Takes data for events from users to create a basic gantt chart that can
|
||
|
* be displayed in various formats.
|
||
|
*
|
||
|
* @author Andrew Tomaka
|
||
|
* @version 1.0
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* gantt - Gantt chart class.
|
||
|
*
|
||
|
* Manage events added by a user to produce a gantt chart
|
||
|
*
|
||
|
* @author Andrew Tomaka
|
||
|
* @version 1.0
|
||
|
**/
|
||
|
class Gantt {
|
||
|
/**
|
||
|
* A list of events added by the user.
|
||
|
* @access private
|
||
|
* @var array
|
||
|
**/
|
||
|
private $events = array();
|
||
|
|
||
|
/**
|
||
|
* Constructor
|
||
|
**/
|
||
|
function __construct() {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
?>
|