You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
626 B
30 lines
626 B
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
namespace Chamilo\PluginBundle\Zoom;
|
|
|
|
use Exception;
|
|
|
|
/**
|
|
* Class UserMeetingRegistrantListItem. An item of a user registrant list.
|
|
*
|
|
* @see UserMeetingRegistrantList
|
|
*
|
|
* @package Chamilo\PluginBundle\Zoom
|
|
*/
|
|
class UserMeetingRegistrantListItem extends API\MeetingRegistrantListItem
|
|
{
|
|
use UserMeetingRegistrantTrait;
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function initializeExtraProperties()
|
|
{
|
|
parent::initializeExtraProperties();
|
|
$this->decodeAndRemoveTag();
|
|
$this->computeFullName();
|
|
}
|
|
}
|
|
|