Legend of the Green Dragon

Gamelog

Gamelog.

Tags
ORM\Table

(name="gamelog", indexes={ @ORM\Index(name="date", columns={"category", "date"}) } )

ORM\Entity

(repositoryClass="Lotgd\Core\EntityRepository\GamelogRepository")

Table of Contents

$category  : string
$date  : DateTime
$filed  : bool
$logid  : int
$message  : string
$who  : int
getCategory()  : string
Get the value of Category.
getDate()  : DateTime
Get the value of Date.
getFiled()  : bool
Get the value of Filed.
getLogid()  : int
Get the value of Logid.
getMessage()  : string
Get the value of Message.
getWho()  : int
Get the value of Who.
setCategory()  : self
Set the value of Category.
setDate()  : self
Set the value of Date.
setFiled()  : self
Set the value of Filed.
setLogid()  : self
Set the value of Logid.
setMessage()  : self
Set the value of Message.
setWho()  : self
Set the value of Who.

Properties

$category

private string $category
Tags
ORM\Column

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

$date

private DateTime $date = '0000-00-00 00:00:00'
Tags
ORM\Column

(name="date", type="datetime", nullable=false, options={"default": "0000-00-00 00:00:00"})

$filed

private bool $filed = '0'
Tags
ORM\Column

(name="filed", type="boolean", nullable=false)

$logid

private int $logid
Tags
ORM\Column

(name="logid", type="integer", nullable=false, options={"unsigned": true})

ORM\Id
ORM\GeneratedValue

(strategy="IDENTITY")

$message

private string $message
Tags
ORM\Column

(name="message", type="text", length=65535, nullable=false)

$who

private int $who = '0'
Tags
ORM\Column

(name="who", type="integer", nullable=false, options={"unsigned": true})

Methods

getCategory()

Get the value of Category.

public getCategory() : string
Return values
string

getDate()

Get the value of Date.

public getDate() : DateTime
Return values
DateTime

getFiled()

Get the value of Filed.

public getFiled() : bool
Return values
bool

getLogid()

Get the value of Logid.

public getLogid() : int
Return values
int

getMessage()

Get the value of Message.

public getMessage() : string
Return values
string

getWho()

Get the value of Who.

public getWho() : int
Return values
int

setCategory()

Set the value of Category.

public setCategory(string $category) : self
Parameters
$category : string
Return values
self

setDate()

Set the value of Date.

public setDate(DateTime $date) : self
Parameters
$date : DateTime
Return values
self

setFiled()

Set the value of Filed.

public setFiled(bool $filed) : self
Parameters
$filed : bool
Return values
self

setLogid()

Set the value of Logid.

public setLogid(int $logid) : self
Parameters
$logid : int
Return values
self

setMessage()

Set the value of Message.

public setMessage(string $message) : self
Parameters
$message : string
Return values
self

setWho()

Set the value of Who.

public setWho(int $who) : self
Parameters
$who : int
Return values
self

Search results