Files
bsiggel 127fa6503b chore: Update copyright year from 2025 to 2026 across core files
- Updated copyright headers in 3,055 core application files
- Changed 'Copyright (C) 2014-2025' to 'Copyright (C) 2014-2026'
- Added 123 new files from EspoCRM core updates
- Removed 4 deprecated files
- Total changes: 61,637 insertions, 54,283 deletions

This is a routine maintenance update for the new year 2026.
2026-02-07 16:05:21 +01:00

209 lines
5.7 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM Open Source CRM application.
* Copyright (C) 2014-2026 EspoCRM, Inc.
* Website: https://www.espocrm.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU Affero General Public License version 3.
*
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
namespace Espo\Modules\Crm\Entities;
use Espo\Core\Entities\Person;
use Espo\Core\Field\DateTime;
use Espo\Core\Field\Link;
use Espo\Core\Field\LinkMultiple;
use Espo\Core\Name\Field;
use Espo\Entities\User;
class Lead extends Person
{
public const ENTITY_TYPE = 'Lead';
public const STATUS_NEW = 'New';
public const STATUS_ASSIGNED = 'Assigned';
public const STATUS_IN_PROCESS = 'In Process';
public const STATUS_CONVERTED = 'Converted';
public const STATUS_RECYCLED = 'Recycled';
public const STATUS_DEAD = 'Dead';
public function get(string $attribute): mixed
{
if ($attribute === Field::NAME) {
return $this->getNameInternal();
}
return parent::get($attribute);
}
public function has(string $attribute): bool
{
if ($attribute === Field::NAME) {
return $this->hasNameInternal();
}
return parent::has($attribute);
}
public function setDescription(?string $description): self
{
return $this->set('description', $description);
}
public function getDescription(): ?string
{
return $this->get('description');
}
public function getStatus(): ?string
{
return $this->get('status');
}
private function getNameInternal(): ?string
{
if (!$this->hasInContainer(Field::NAME) || !$this->getFromContainer(Field::NAME)) {
if ($this->get('accountName')) {
return $this->get('accountName');
}
if ($this->get('emailAddress')) {
return $this->get('emailAddress');
}
if ($this->get('phoneNumber')) {
return $this->get('phoneNumber');
}
}
return $this->getFromContainer(Field::NAME);
}
private function hasNameInternal(): bool
{
if ($this->hasInContainer(Field::NAME)) {
return true;
}
if ($this->has('accountName')) {
return true;
}
if ($this->has('emailAddress')) {
return true;
}
if ($this->has('phoneNumber')) {
return true;
}
return false;
}
public function getCampaign(): ?Campaign
{
/** @var ?Campaign */
return $this->relations->getOne('campaign');
}
public function getAssignedUser(): ?Link
{
/** @var ?Link */
return $this->getValueObject(Field::ASSIGNED_USER);
}
public function getTeams(): LinkMultiple
{
/** @var LinkMultiple */
return $this->getValueObject(Field::TEAMS);
}
public function getCreatedAccount(): ?Account
{
/** @var ?Account */
return $this->relations->getOne('createdAccount');
}
public function getCreatedContact(): ?Contact
{
/** @var ?Contact */
return $this->relations->getOne('createdContact');
}
public function getCreatedOpportunity(): ?Opportunity
{
/** @var ?Opportunity */
return $this->relations->getOne('createdOpportunity');
}
public function getConvertedAt(): ?DateTime
{
/** @var ?DateTime */
return $this->getValueObject('convertedAt');
}
public function setStatus(string $status): self
{
$this->set('status', $status);
return $this;
}
public function setCreatedAccount(Account|null $createdAccount): self
{
$this->relations->set('createdAccount', $createdAccount);
return $this;
}
public function setAssignedUser(Link|User|null $assignedUser): self
{
return $this->setRelatedLinkOrEntity(Field::ASSIGNED_USER, $assignedUser);
}
public function setTeams(LinkMultiple $teams): self
{
$this->setValueObject(Field::TEAMS, $teams);
return $this;
}
public function setSource(?string $source): self
{
return $this->set('source', $source);
}
public function setCampaign(Link|Campaign|null $campaign): self
{
return $this->setRelatedLinkOrEntity('campaign', $campaign);
}
/**
* @since 9.3.0
*/
public function getTitle(): ?string
{
return $this->get('title');
}
}