Remove article type content

This commit is contained in:
DariusIII
2025-11-27 12:08:31 +01:00
parent 7dcfdba4de
commit ff51661dd5
2 changed files with 3 additions and 6 deletions
-2
View File
@@ -44,7 +44,6 @@ class Content extends Model
{
// Content type constants
public const TYPE_USEFUL = 1;
public const TYPE_ARTICLE = 2;
public const TYPE_INDEX = 3;
// Status constants
@@ -136,7 +135,6 @@ class Content extends Model
{
return match ($this->contenttype) {
self::TYPE_USEFUL => 'Useful Link',
self::TYPE_ARTICLE => 'Article',
self::TYPE_INDEX => 'Homepage',
default => 'Unknown',
};