Club System

This commit is contained in:
2026-06-02 20:54:08 +02:00
parent d79dbecad4
commit f4dc336c88
13 changed files with 371 additions and 40 deletions

18
XF/Entity/User.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
namespace RomhackPlaza\Master\XF\Entity;
use XF\Mvc\Entity\Structure;
use XF\Mvc\Entity\Entity;
class User extends XFCP_User
{
public static function getStructure(Structure $structure): Structure
{
$structure = parent::getStructure($structure);
$structure->columns['rhpz_entry_count'] = [ 'type' => self::UINT, 'default' => 0 ];
return $structure;
}
}