|
|
|
|
<?php
|
|
|
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
|
|
|
|
|
|
namespace Chamilo\CourseBundle\Entity;
|
|
|
|
|
|
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* CDropboxCategory
|
|
|
|
|
*
|
|
|
|
|
* @ORM\Table(name="c_dropbox_category", indexes={@ORM\Index(name="session_id", columns={"session_id"})})
|
|
|
|
|
* @ORM\Entity
|
|
|
|
|
*/
|
|
|
|
|
class CDropboxCategory
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* @var integer
|
|
|
|
|
*
|
|
|
|
|
* @ORM\Column(name="iid", type="integer")
|
|
|
|
|
* @ORM\Id
|
|
|
|
|
* @ORM\GeneratedValue
|
|
|
|
|
*/
|
|
|
|
|
private $iid;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var integer
|
|
|
|
|
*
|
|
|
|
|
* @ORM\Column(name="c_id", type="integer")
|
|
|
|
|
*/
|
|
|
|
|
private $cId;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var integer
|
|
|
|
|
*
|
|
|
|
|
* @ORM\Column(name="cat_id", type="integer")
|
|
|
|
|
*/
|
|
|
|
|
private $catId;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var string
|
|
|
|
|
*
|
|
|
|
|
* @ORM\Column(name="cat_name", type="text", nullable=false)
|
|
|
|
|
*/
|
|
|
|
|
private $catName;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var boolean
|
|
|
|
|
*
|
|
|
|
|
* @ORM\Column(name="received", type="boolean", nullable=false)
|
|
|
|
|
*/
|
|
|
|
|
private $received;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var boolean
|
|
|
|
|
*
|
|
|
|
|
* @ORM\Column(name="sent", type="boolean", nullable=false)
|
|
|
|
|
*/
|
|
|
|
|
private $sent;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var integer
|
|
|
|
|
*
|
|
|
|
|
* @ORM\Column(name="user_id", type="integer", nullable=false)
|
|
|
|
|
*/
|
|
|
|
|
private $userId;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var integer
|
|
|
|
|
*
|
|
|
|
|
* @ORM\Column(name="session_id", type="integer", nullable=false)
|
|
|
|
|
*/
|
|
|
|
|
private $sessionId;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set catName
|
|
|
|
|
*
|
|
|
|
|
* @param string $catName
|
|
|
|
|
* @return CDropboxCategory
|
|
|
|
|
*/
|
|
|
|
|
public function setCatName($catName)
|
|
|
|
|
{
|
|
|
|
|
$this->catName = $catName;
|
|
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get catName
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
public function getCatName()
|
|
|
|
|
{
|
|
|
|
|
return $this->catName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set received
|
|
|
|
|
*
|
|
|
|
|
* @param boolean $received
|
|
|
|
|
* @return CDropboxCategory
|
|
|
|
|
*/
|
|
|
|
|
public function setReceived($received)
|
|
|
|
|
{
|
|
|
|
|
$this->received = $received;
|
|
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get received
|
|
|
|
|
*
|
|
|
|
|
* @return boolean
|
|
|
|
|
*/
|
|
|
|
|
public function getReceived()
|
|
|
|
|
{
|
|
|
|
|
return $this->received;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set sent
|
|
|
|
|
*
|
|
|
|
|
* @param boolean $sent
|
|
|
|
|
* @return CDropboxCategory
|
|
|
|
|
*/
|
|
|
|
|
public function setSent($sent)
|
|
|
|
|
{
|
|
|
|
|
$this->sent = $sent;
|
|
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get sent
|
|
|
|
|
*
|
|
|
|
|
* @return boolean
|
|
|
|
|
*/
|
|
|
|
|
public function getSent()
|
|
|
|
|
{
|
|
|
|
|
return $this->sent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set userId
|
|
|
|
|
*
|
|
|
|
|
* @param integer $userId
|
|
|
|
|
* @return CDropboxCategory
|
|
|
|
|
*/
|
|
|
|
|
public function setUserId($userId)
|
|
|
|
|
{
|
|
|
|
|
$this->userId = $userId;
|
|
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get userId
|
|
|
|
|
*
|
|
|
|
|
* @return integer
|
|
|
|
|
*/
|
|
|
|
|
public function getUserId()
|
|
|
|
|
{
|
|
|
|
|
return $this->userId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set sessionId
|
|
|
|
|
*
|
|
|
|
|
* @param integer $sessionId
|
|
|
|
|
* @return CDropboxCategory
|
|
|
|
|
*/
|
|
|
|
|
public function setSessionId($sessionId)
|
|
|
|
|
{
|
|
|
|
|
$this->sessionId = $sessionId;
|
|
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get sessionId
|
|
|
|
|
*
|
|
|
|
|
* @return integer
|
|
|
|
|
*/
|
|
|
|
|
public function getSessionId()
|
|
|
|
|
{
|
|
|
|
|
return $this->sessionId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set catId
|
|
|
|
|
*
|
|
|
|
|
* @param integer $catId
|
|
|
|
|
* @return CDropboxCategory
|
|
|
|
|
*/
|
|
|
|
|
public function setCatId($catId)
|
|
|
|
|
{
|
|
|
|
|
$this->catId = $catId;
|
|
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get catId
|
|
|
|
|
*
|
|
|
|
|
* @return integer
|
|
|
|
|
*/
|
|
|
|
|
public function getCatId()
|
|
|
|
|
{
|
|
|
|
|
return $this->catId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set cId
|
|
|
|
|
*
|
|
|
|
|
* @param integer $cId
|
|
|
|
|
* @return CDropboxCategory
|
|
|
|
|
*/
|
|
|
|
|
public function setCId($cId)
|
|
|
|
|
{
|
|
|
|
|
$this->cId = $cId;
|
|
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get cId
|
|
|
|
|
*
|
|
|
|
|
* @return integer
|
|
|
|
|
*/
|
|
|
|
|
public function getCId()
|
|
|
|
|
{
|
|
|
|
|
return $this->cId;
|
|
|
|
|
}
|
|
|
|
|
}
|