Page MenuHomePhorge

Auth2F.php
No OneTemporary

Authored By
Unknown
Size
794 B
Referenced Files
None
Subscribers
None

Auth2F.php

<?php
namespace App\Handlers;
class Auth2F extends \App\Handlers\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['forbidden'] = ['Activesync'];
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 60;
}
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Apr 24, 1:05 PM (1 w, 3 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
96/fa/e47f6284cef2b1cfda4d41d53287
Default Alt Text
Auth2F.php (794 B)

Event Timeline