mirror of
https://github.com/friendica/friendica
synced 2024-12-26 09:20:17 +00:00
3297d5c3e6
- Create ProfileField model class - Remove obsolete BaseCollection->models property
24 lines
544 B
PHP
24 lines
544 B
PHP
<?php
|
|
|
|
namespace Friendica\Model;
|
|
|
|
use Friendica\BaseModel;
|
|
|
|
/**
|
|
* Custom profile field model class.
|
|
*
|
|
* Custom profile fields are user-created arbitrary profile fields that can be assigned a permission set to restrict its
|
|
* display to specific Friendica contacts as it requires magic authentication to work.
|
|
*
|
|
* @property int uid
|
|
* @property int order
|
|
* @property int psid
|
|
* @property string label
|
|
* @property string value
|
|
* @property string created
|
|
* @property string edited
|
|
*/
|
|
class ProfileField extends BaseModel
|
|
{
|
|
|
|
}
|