mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 22:54:25 +01:00
56 lines
1.3 KiB
PHP
56 lines
1.3 KiB
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);
|
|
}
|
|
|
|
public static function getPostmarkTokenFromId($id)
|
|
{
|
|
switch($id)
|
|
{
|
|
case static::INVOICENINJA_COM:
|
|
return config('services.postmark_token');
|
|
case static::INVOICE_SERVICES:
|
|
return config('services.postmark_token_2');
|
|
}
|
|
}
|
|
|
|
public static function getSupportDomainFromId($id)
|
|
{
|
|
switch($id)
|
|
{
|
|
case static::INVOICENINJA_COM:
|
|
return config('ninja.tickets.ticket_support_domain');
|
|
case static::INVOICE_SERVICES:
|
|
return config('ninja.tickets.ticket_support_domain_2');
|
|
}
|
|
}
|
|
}
|