Page MenuHomePhorge

Mailbox.php
No OneTemporary

Authored By
Unknown
Size
1 KB
Referenced Files
None
Subscribers
None

Mailbox.php

<?php
namespace App\Handlers;
class Mailbox extends \App\Handlers\Base
{
public static function entitleableClass(): string
{
return \App\User::class;
}
public static function preReq($entitlement, $user): bool
{
if (!$entitlement->sku->active) {
\Log::error("Sku not active");
return false;
}
/*
FIXME: This code prevents from creating initial mailbox SKU
on signup of group account, because User::domains()
does not return the new domain.
Either we make sure to create domain entitlement before mailbox
entitlement or make the method here aware of that case or?
list($local, $domain) = explode('@', $user->email);
$domains = $user->domains();
foreach ($domains as $_domain) {
if ($domain == $_domain->namespace) {
return true;
}
}
\Log::info("Domain not for user");
*/
return true;
}
/**
* 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 100;
}
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Apr 24, 11:16 AM (1 w, 5 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
02/9a/b95515872917ea0741624418a810
Default Alt Text
Mailbox.php (1 KB)

Event Timeline