Esempio n. 1
0
 public function move(TreeNode $newParent)
 {
     parent::move($newParent);
     $g = $this->getTreeNodeGroupObject();
     if (is_object($g)) {
         $g->rescanGroupPathRecursive();
     }
 }
Esempio n. 2
0
 public function move(Node $newParent)
 {
     parent::move($newParent);
     $f = $this->getTreeNodeFileObject();
     if (is_object($f)) {
         $f->setFileFolder($newParent);
     }
 }