mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
34 lines
686 B
PHP
34 lines
686 B
PHP
<?php
|
|
|
|
namespace App\Constants;
|
|
|
|
use App\Libraries\Utils;
|
|
|
|
class Domain
|
|
{
|
|
const INVOICENINJA_COM = 1;
|
|
const INVOICE_SERVICES = 2;
|
|
|
|
public static function getDomainFromId($id)
|
|
{
|
|
switch ($id) {
|
|
case static::INVOICENINJA_COM:
|
|
return 'invoiceninja.com';
|
|
case static::INVOICE_SERVICES:
|
|
return 'invoice.services';
|
|
}
|
|
|
|
return 'invoiceninja.com';
|
|
}
|
|
|
|
public static function getLinkFromId($id)
|
|
{
|
|
return 'https://app.' . static::getDomainFromId($id);
|
|
}
|
|
|
|
public static function getEmailFromId($id)
|
|
{
|
|
return 'maildelivery@' . static::getDomainFromId($id);
|
|
}
|
|
}
|