コード例 #1
0
 /**
  *
  */
 protected function getNodeArray(t3lib_tree_RepresentationNode $node)
 {
     $nodeArray = array('iconCls' => $node->getIcon(), 'text' => $node->getLabel(), 'leaf' => !$node->hasChildNodes(), 'id' => $node->getId(), 'uid' => $node->getId());
     return $nodeArray;
 }