Example #1
0
 /**
  * Moves all children tags of the provided tag to the new location
  * Deprecated: see $this->moveChildrenBelowAnotherTag()
  *
  * @deprecated
  *
  * @static
  *
  * @param eZTagsObject $tag
  * @param eZTagsObject $targetTag
  */
 public static function moveChildren($tag, $targetTag)
 {
     if (!$tag instanceof self) {
         return;
     }
     $tag->moveChildrenBelowAnotherTag($targetTag);
 }