Files
Phraseanet/lib/Alchemy/Phrasea/Model/Entities/SessionModule.php
Romain Neutron 13dd86c67f Fix CS
2013-10-31 14:22:41 +01:00

155 lines
2.8 KiB
PHP

<?php
/*
* This file is part of Phraseanet
*
* (c) 2005-2013 Alchemy
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Alchemy\Phrasea\Model\Entities;
use Doctrine\ORM\Mapping as ORM;
use Gedmo\Mapping\Annotation as Gedmo;
/**
* @ORM\Table(name="SessionModules", uniqueConstraints={@ORM\UniqueConstraint(name="unique_module", columns={"session_id", "module_id"})})
* @ORM\Entity(repositoryClass="Alchemy\Phrasea\Model\Repositories\SessionModuleRepository")
*/
class SessionModule
{
/**
* @ORM\Column(type="integer")
* @ORM\Id
* @ORM\GeneratedValue
*/
private $id;
/**
* @ORM\Column(type="integer")
*/
private $module_id;
/**
* @Gedmo\Timestampable(on="create")
* @ORM\Column(type="datetime")
*/
private $created;
/**
* @Gedmo\Timestampable(on="update")
* @ORM\Column(type="datetime")
*/
private $updated;
/**
* @ORM\ManyToOne(targetEntity="Session", inversedBy="modules", cascade={"persist"})
* @ORM\JoinColumn(name="session_id", referencedColumnName="id")
*/
private $session;
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set module_id
*
* @param integer $moduleId
* @return SessionModule
*/
public function setModuleId($moduleId)
{
$this->module_id = $moduleId;
return $this;
}
/**
* Get module_id
*
* @return integer
*/
public function getModuleId()
{
return $this->module_id;
}
/**
* Set created
*
* @param \DateTime $created
* @return SessionModule
*/
public function setCreated($created)
{
$this->created = $created;
return $this;
}
/**
* Get created
*
* @return \DateTime
*/
public function getCreated()
{
return $this->created;
}
/**
* Set updated
*
* @param \DateTime $updated
* @return SessionModule
*/
public function setUpdated(\DateTime $updated)
{
$this->updated = $updated;
return $this;
}
/**
* Get updated
*
* @return \DateTime
*/
public function getUpdated()
{
return $this->updated;
}
/**
* Set session
*
* @param Session $session
* @return SessionModule
*/
public function setSession(Session $session = null)
{
$this->session = $session;
return $this;
}
/**
* Get session
*
* @return Session
*/
public function getSession()
{
return $this->session;
}
}