Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/main/inc/entity/blog_comment.class.php

298 lines
4.7 KiB

<?php
namespace Entity;
use Doctrine\ORM\Mapping as ORM;
/**
*
* @license see /license.txt
* @author autogenerated
*/
class BlogComment extends \CourseEntity
{
/**
* @return \Entity\Repository\BlogCommentRepository
*/
public static function repository(){
return \Entity\Repository\BlogCommentRepository::instance();
}
/**
* @return \Entity\BlogComment
*/
public static function create(){
return new self();
}
/**
* @var integer $c_id
*/
protected $c_id;
/**
* @var integer $comment_id
*/
protected $comment_id;
/**
* @var string $title
*/
protected $title;
/**
* @var text $comment
*/
protected $comment;
/**
* @var integer $author_id
*/
protected $author_id;
/**
* @var datetime $date_creation
*/
protected $date_creation;
/**
* @var integer $blog_id
*/
protected $blog_id;
/**
* @var integer $post_id
*/
protected $post_id;
/**
* @var integer $task_id
*/
protected $task_id;
/**
* @var integer $parent_comment_id
*/
protected $parent_comment_id;
/**
* Set c_id
*
* @param integer $value
* @return BlogComment
*/
public function set_c_id($value)
{
$this->c_id = $value;
return $this;
}
/**
* Get c_id
*
* @return integer
*/
public function get_c_id()
{
return $this->c_id;
}
/**
* Set comment_id
*
* @param integer $value
* @return BlogComment
*/
public function set_comment_id($value)
{
$this->comment_id = $value;
return $this;
}
/**
* Get comment_id
*
* @return integer
*/
public function get_comment_id()
{
return $this->comment_id;
}
/**
* Set title
*
* @param string $value
* @return BlogComment
*/
public function set_title($value)
{
$this->title = $value;
return $this;
}
/**
* Get title
*
* @return string
*/
public function get_title()
{
return $this->title;
}
/**
* Set comment
*
* @param text $value
* @return BlogComment
*/
public function set_comment($value)
{
$this->comment = $value;
return $this;
}
/**
* Get comment
*
* @return text
*/
public function get_comment()
{
return $this->comment;
}
/**
* Set author_id
*
* @param integer $value
* @return BlogComment
*/
public function set_author_id($value)
{
$this->author_id = $value;
return $this;
}
/**
* Get author_id
*
* @return integer
*/
public function get_author_id()
{
return $this->author_id;
}
/**
* Set date_creation
*
* @param datetime $value
* @return BlogComment
*/
public function set_date_creation($value)
{
$this->date_creation = $value;
return $this;
}
/**
* Get date_creation
*
* @return datetime
*/
public function get_date_creation()
{
return $this->date_creation;
}
/**
* Set blog_id
*
* @param integer $value
* @return BlogComment
*/
public function set_blog_id($value)
{
$this->blog_id = $value;
return $this;
}
/**
* Get blog_id
*
* @return integer
*/
public function get_blog_id()
{
return $this->blog_id;
}
/**
* Set post_id
*
* @param integer $value
* @return BlogComment
*/
public function set_post_id($value)
{
$this->post_id = $value;
return $this;
}
/**
* Get post_id
*
* @return integer
*/
public function get_post_id()
{
return $this->post_id;
}
/**
* Set task_id
*
* @param integer $value
* @return BlogComment
*/
public function set_task_id($value)
{
$this->task_id = $value;
return $this;
}
/**
* Get task_id
*
* @return integer
*/
public function get_task_id()
{
return $this->task_id;
}
/**
* Set parent_comment_id
*
* @param integer $value
* @return BlogComment
*/
public function set_parent_comment_id($value)
{
$this->parent_comment_id = $value;
return $this;
}
/**
* Get parent_comment_id
*
* @return integer
*/
public function get_parent_comment_id()
{
return $this->parent_comment_id;
}
}