Moving dhtmlxGantt library to 'libraries' folder
This commit is contained in:
parent
dbcdde741c
commit
5e16eb66dd
162 changed files with 6 additions and 5 deletions
19
libraries/dhtmlxgantt/connector/filesystem_item.php
Normal file
19
libraries/dhtmlxgantt/connector/filesystem_item.php
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
/*
|
||||
@author dhtmlx.com
|
||||
@license GPL, see license.txt
|
||||
*/
|
||||
|
||||
class FileTreeDataItem extends TreeDataItem {
|
||||
|
||||
function has_kids(){
|
||||
if ($this->data['is_folder'] == '1') {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
Reference in a new issue