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; } } } ?>