chamilo/chamilo-lms

View on GitHub
src/CoreBundle/Entity/Tool.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

/* For licensing terms, see /license.txt */

namespace Chamilo\CoreBundle\Entity;

use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\Common\Collections\Criteria;
use Doctrine\ORM\Mapping as ORM;
use Stringable;
use Symfony\Component\Serializer\Annotation\Groups;
use Symfony\Component\Validator\Constraints as Assert;

/**
 * Platform tools.
 */
#[ORM\Table(name: 'tool')]
#[ORM\Entity]
class Tool implements Stringable
{
    #[ORM\Column(name: 'id', type: 'integer')]
    #[ORM\Id]
    #[ORM\GeneratedValue]
    protected ?int $id = null;

    #[Assert\NotBlank]
    #[Groups(['tool:read'])]
    #[ORM\Column(name: 'title', type: 'string', nullable: false, unique: true)]
    protected string $title;

    /**
     * @var Collection<int, ResourceType>
     */
    #[ORM\OneToMany(targetEntity: ResourceType::class, mappedBy: 'tool', cascade: ['persist', 'remove'])]
    protected Collection $resourceTypes;

    public function __construct()
    {
        $this->resourceTypes = new ArrayCollection();
    }

    public function __toString(): string
    {
        return $this->getTitle();
    }

    /*public function getToolResourceRight()
    {
        return $this->toolResourceRight;
    }*/

    /*public function setToolResourceRight($toolResourceRight)
     * {
     * $this->toolResourceRight = new ArrayCollection();
     * foreach ($toolResourceRight as $item) {
     * $this->addToolResourceRight($item);
     * }
     * }*/

    /*public function addToolResourceRight(ToolResourceRight $toolResourceRight)
     * {
     * $toolResourceRight->setTool($this);
     * $this->toolResourceRight[] = $toolResourceRight;
     * return $this;
     * }*/

    /*public function getResourceNodes()
    {
        return $this->resourceNodes;
    }*/

    /*public function setResourceNodes($resourceNodes)
     * {
     * $this->resourceNodes = $resourceNodes;
     * return $this;
     * }*/
    public function getId(): int
    {
        return $this->id;
    }

    public function setTitle(string $title): self
    {
        $this->title = $title;

        return $this;
    }

    public function getTitle(): string
    {
        return $this->title;
    }

    /**
     * @return Collection<int, ResourceType>
     */
    public function getResourceTypes(): Collection
    {
        return $this->resourceTypes;
    }

    public function hasResourceType(ResourceType $resourceType): bool
    {
        if (0 !== $this->resourceTypes->count()) {
            $criteria = Criteria::create()->where(
                Criteria::expr()->eq('title', $resourceType->getTitle())
            );
            $relation = $this->resourceTypes->matching($criteria);

            return $relation->count() > 0;
        }

        return false;
    }

    public function setResourceTypes(Collection $resourceTypes): self
    {
        $this->resourceTypes = $resourceTypes;

        return $this;
    }

    /*public function getResourceTypeByName(string $title): ?ResourceType
     * {
     * $criteria = Criteria::create()->where(Criteria::expr()->eq('title', $title));
     * return $this->getResourceTypes()->matching($criteria)->first();
     * }*/
}