Ejemplo n.º 1
0
 /**
  * Recursively deletes all children tags of the given tag, including the given tag itself
  * Deprecated: see $this->recursivelyDeleteTag()
  *
  * @deprecated
  *
  * @static
  *
  * @param eZTagsObject $rootTag
  */
 public static function recursiveTagDelete($rootTag)
 {
     if (!$rootTag instanceof self) {
         return;
     }
     $rootTag->recursivelyDeleteTag();
 }