2019-05-29 13:15:42 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-29 13:15:42 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Utils\Traits;
|
|
|
|
|
|
|
|
/**
|
2019-05-30 01:58:00 +02:00
|
|
|
* Class Inviteable
|
2019-05-29 13:15:42 +02:00
|
|
|
* @package App\Utils\Traits
|
|
|
|
*/
|
|
|
|
trait Inviteable
|
|
|
|
{
|
|
|
|
|
2019-05-30 01:58:00 +02:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
/**
|
|
|
|
* Gets the status.
|
|
|
|
*
|
|
|
|
* @return string The status.
|
|
|
|
*/
|
|
|
|
public function getStatus() : string
|
|
|
|
{
|
|
|
|
$status = '';
|
|
|
|
|
|
|
|
if (isset($this->sent_date)) {
|
|
|
|
$status = ctrans('texts.invitation_status_sent');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($this->opened_date)) {
|
|
|
|
$status = ctrans('texts.invitation_status_opened');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($this->viewed_date)) {
|
|
|
|
$status = ctrans('texts.invitation_status_viewed');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return $status;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getLink() : string
|
|
|
|
{
|
|
|
|
$entity_type = strtolower(class_basename($this->entityType()));
|
|
|
|
|
|
|
|
//$this->with('company','contact',$this->entity_type);
|
|
|
|
$this->with('company');
|
|
|
|
|
|
|
|
$domain = isset($this->company->portal_domain) ?: $this->company->domain();
|
|
|
|
|
|
|
|
switch ($this->company->portal_mode) {
|
|
|
|
case 'subdomain':
|
|
|
|
return $domain .'/client/'. $entity_type .'/'. $this->key;
|
|
|
|
break;
|
|
|
|
case 'iframe':
|
|
|
|
return $domain .'/client/'. $entity_type .'/'. $this->key;
|
|
|
|
//return $domain . $entity_type .'/'. $this->contact->client->client_hash .'/'. $this->key;
|
|
|
|
break;
|
|
|
|
case 'domain':
|
|
|
|
return $domain .'/client/'. $entity_type .'/'. $this->key;
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|