mirror of
https://github.com/friendica/friendica
synced 2025-04-26 13:50:11 +00:00
Create new ProfileField classes
- Create ProfileField model class - Remove obsolete BaseCollection->models property
This commit is contained in:
parent
6857d24995
commit
3297d5c3e6
4 changed files with 156 additions and 1 deletions
24
src/Model/ProfileField.php
Normal file
24
src/Model/ProfileField.php
Normal file
|
@ -0,0 +1,24 @@
|
|||
<?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
|
||||
{
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue