コード例 #1
0
ファイル: TagManager.php プロジェクト: ElBiniou/superbok
 public function delete($tagId)
 {
     $tag = new Tag($this->getDataSource());
     $tag->loadById((int) $tagId);
     $tag->delete();
     return $tag->getInheritedAttributesValues();
 }