mirror of
https://github.com/YunoHost-Apps/movim_ynh.git
synced 2024-09-03 19:46:19 +02:00
33 lines
816 B
PHP
33 lines
816 B
PHP
|
<?php
|
||
|
|
||
|
namespace modl;
|
||
|
|
||
|
class Conference extends Model {
|
||
|
public $jid;
|
||
|
public $conference;
|
||
|
public $name;
|
||
|
public $nick;
|
||
|
public $autojoin;
|
||
|
public $status;
|
||
|
|
||
|
public function __construct() {
|
||
|
$this->_struct = '
|
||
|
{
|
||
|
"jid" :
|
||
|
{"type":"string", "size":128, "mandatory":true, "key":true },
|
||
|
"conference" :
|
||
|
{"type":"string", "size":128, "mandatory":true, "key":true },
|
||
|
"name" :
|
||
|
{"type":"string", "size":128, "mandatory":true },
|
||
|
"nick" :
|
||
|
{"type":"string", "size":128 },
|
||
|
"autojoin" :
|
||
|
{"type":"int", "size":1 },
|
||
|
"status" :
|
||
|
{"type":"int", "size":1 }
|
||
|
}';
|
||
|
|
||
|
parent::__construct();
|
||
|
}
|
||
|
}
|