Page MenuHomePhorge

Meet.php
No OneTemporary

Authored By
Unknown
Size
776 B
Referenced Files
None
Subscribers
None

Meet.php

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

File Metadata

Mime Type
text/x-php
Expires
Fri, Apr 24, 10:15 AM (1 d, 19 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
18785511
Default Alt Text
Meet.php (776 B)

Event Timeline