18 lines
383 B
PHP
18 lines
383 B
PHP
<?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;
|
|
}
|
|
} |