summaryrefslogtreecommitdiffstats
path: root/codebase/connector/filesystem_item.php
blob: 046ad98d6916ffeabba035774a1401b2c19c98b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
		}
	}

}

?>