Legend of the Green Dragon

ModuleUserprefs
in package

ModuleUserprefs.

Tags
ORM\Table

(name="module_userprefs", indexes={ @ORM\Index(name="modulename", columns={"modulename", "userid"}) } )

ORM\Entity

(repositoryClass="Lotgd\Core\Repository\ModuleUserprefsRepository")

Table of Contents

$modulename  : string
$setting  : string
$userid  : int
$value  : string
getModulename()  : string
Get the value of Modulename.
getSetting()  : string
Get the value of Setting.
getUserid()  : int
Get the value of Userid.
getValue()  : string
Get the value of Value.
setModulename()  : self
Set the value of Modulename.
setSetting()  : self
Set the value of Setting.
setUserid()  : self
Set the value of Userid.
setValue()  : self
Set the value of Value.

Properties

$modulename

private string $modulename = ''
Tags
ORM\Column

(name="modulename", type="string", length=50)

ORM\Id
ORM\GeneratedValue

(strategy="NONE")

$setting

private string $setting = ''
Tags
ORM\Column

(name="setting", type="string", length=50)

ORM\Column

(name="setting", type="string", length=50, nullable=false)

ORM\Id
ORM\GeneratedValue

(strategy="NONE")

$userid

private int $userid = 0
Tags
ORM\Column

(name="userid", type="integer", options={"unsigned"=true, "default"="0"})

ORM\Id
ORM\GeneratedValue

(strategy="NONE")

$value

private string $value = ''
Tags
ORM\Column

(name="value", type="text", length=65535)

Methods

getModulename()

Get the value of Modulename.

public getModulename() : string
Return values
string

getSetting()

Get the value of Setting.

public getSetting() : string
Return values
string

getUserid()

Get the value of Userid.

public getUserid() : int
Return values
int

getValue()

Get the value of Value.

public getValue() : string
Return values
string

setModulename()

Set the value of Modulename.

public setModulename(string $modulename) : self
Parameters
$modulename : string
Return values
self

setSetting()

Set the value of Setting.

public setSetting(string $setting) : self
Parameters
$setting : string
Return values
self

setUserid()

Set the value of Userid.

public setUserid(int $userid) : self
Parameters
$userid : int
Return values
self

setValue()

Set the value of Value.

public setValue(string $value) : self
Parameters
$value : string
Return values
self

Search results