Page MenuHomePhorge

Room.php
No OneTemporary

Authored By
Unknown
Size
691 B
Referenced Files
None
Subscribers
None

Room.php

<?php
namespace App\Handlers;
use App\Sku;
class Room extends Base
{
/**
* The entitleable class for this handler.
*/
public static function entitleableClass(): string
{
return \App\Meet\Room::class;
}
/**
* SKU handler metadata.
*/
public static function metadata(Sku $sku): array
{
$data = parent::metadata($sku);
$data['enabled'] = true;
$data['exclusive'] = ['GroupRoom'];
return $data;
}
/**
* The priority that specifies the order of SKUs in UI.
* Higher number means higher on the list.
*/
public static function priority(): int
{
return 10;
}
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Apr 24, 1:55 PM (5 d, 12 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
18741615
Default Alt Text
Room.php (691 B)

Event Timeline