And readding the same file starting with an uppercase character...
This commit is contained in:
parent
2ff4609936
commit
bb6c7942be
1 changed files with 35 additions and 0 deletions
35
Gantt.php
Normal file
35
Gantt.php
Normal file
|
@ -0,0 +1,35 @@
|
|||
<?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() {
|
||||
|
||||
}
|
||||
}
|
||||
?>
|
Loading…
Reference in a new issue