Remove deprecated TagCloud-related constants and methods (#4325)
authorMatthias Schmidt <gravatronics@live.com>
Mon, 21 Jun 2021 15:37:00 +0000 (17:37 +0200)
committerGitHub <noreply@github.com>
Mon, 21 Jun 2021 15:37:00 +0000 (17:37 +0200)
These constants and methods have been deprecated for several years since 3d21a963c9348a63ecafc11abbee8923efbcdcbc.

wcfsetup/install/files/lib/data/tag/TagCloudTag.class.php
wcfsetup/install/files/lib/system/tagging/TagCloud.class.php

index 1691c8565789dd80c0960f0606514aa237870ff3..807f25669fc00eadc0ca6968c2e3a569568d3b3e 100644 (file)
@@ -49,25 +49,4 @@ class TagCloudTag extends DatabaseObjectDecorator
     {
         return $this->weight;
     }
-
-    /**
-     * Sets the size of the tag.
-     *
-     * @param double $size
-     * @deprecated  3.0
-     */
-    public function setSize($size)
-    {
-    }
-
-    /**
-     * Returns the size of the tag.
-     *
-     * @return  double
-     * @deprecated  3.0
-     */
-    public function getSize()
-    {
-        return (($this->weight - 1) / 6) * 85 + 85;
-    }
 }
index 14321e00c12f12c3bdab30d62e8f8a90770a2601..59397389ef0c569553cf4bae00595167454a89d4 100644 (file)
@@ -16,20 +16,6 @@ use wcf\system\language\LanguageFactory;
  */
 class TagCloud
 {
-    /**
-     * max font size
-     * @var int
-     * @deprecated 3.0
-     */
-    const MAX_FONT_SIZE = 170;
-
-    /**
-     * min font size
-     * @var int
-     * @deprecated 3.0
-     */
-    const MIN_FONT_SIZE = 85;
-
     /**
      * list of tags
      * @var TagCloudTag[]