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.
132 lines
2.2 KiB
132 lines
2.2 KiB
<?php
|
|
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
namespace Chamilo\CoreBundle\Entity;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
/**
|
|
* HookObserver.
|
|
*
|
|
* @ORM\Table(
|
|
* name="hook_observer",
|
|
* options={"row_format":"DYNAMIC"},
|
|
* uniqueConstraints={@ORM\UniqueConstraint(name="class_name", columns={"class_name"})}
|
|
* )
|
|
* @ORM\Entity
|
|
*/
|
|
class HookObserver
|
|
{
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="class_name", type="string", length=190, nullable=true)
|
|
*/
|
|
protected $className;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="path", type="string", length=255, nullable=false)
|
|
*/
|
|
protected $path;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="plugin_name", type="string", length=255, nullable=true)
|
|
*/
|
|
protected $pluginName;
|
|
|
|
/**
|
|
* @var int
|
|
*
|
|
* @ORM\Column(name="id", type="integer")
|
|
* @ORM\Id
|
|
* @ORM\GeneratedValue(strategy="IDENTITY")
|
|
*/
|
|
protected $id;
|
|
|
|
/**
|
|
* Set className.
|
|
*
|
|
* @param string $className
|
|
*
|
|
* @return HookObserver
|
|
*/
|
|
public function setClassName($className)
|
|
{
|
|
$this->className = $className;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get className.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getClassName()
|
|
{
|
|
return $this->className;
|
|
}
|
|
|
|
/**
|
|
* Set path.
|
|
*
|
|
* @param string $path
|
|
*
|
|
* @return HookObserver
|
|
*/
|
|
public function setPath($path)
|
|
{
|
|
$this->path = $path;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get path.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getPath()
|
|
{
|
|
return $this->path;
|
|
}
|
|
|
|
/**
|
|
* Set pluginName.
|
|
*
|
|
* @param string $pluginName
|
|
*
|
|
* @return HookObserver
|
|
*/
|
|
public function setPluginName($pluginName)
|
|
{
|
|
$this->pluginName = $pluginName;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get pluginName.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getPluginName()
|
|
{
|
|
return $this->pluginName;
|
|
}
|
|
|
|
/**
|
|
* Get id.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getId()
|
|
{
|
|
return $this->id;
|
|
}
|
|
}
|
|
|