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.
26 lines
525 B
26 lines
525 B
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
namespace Chamilo\PluginBundle\Zoom;
|
|
|
|
/**
|
|
* Class CourseMeetingList. A List of course meetings.
|
|
*
|
|
* @see CourseMeetingListItem
|
|
*
|
|
* @package Chamilo\PluginBundle\Zoom
|
|
*/
|
|
class CourseMeetingList extends API\MeetingList
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function itemClass($propertyName)
|
|
{
|
|
if ('meetings' === $propertyName) {
|
|
return CourseMeetingListItem::class;
|
|
}
|
|
|
|
return parent::itemClass($propertyName);
|
|
}
|
|
}
|
|
|