Documentation

User
in package

User

Tags
ORM\Table

(name="custom_user")

ORM\Entity

(repositoryClass="App\Repository\UserRepository")

Table of Contents

Properties

$id  : int
$activeFestival  : mixed
current festival we are recording sellings for
$averageMonthlyEarnings  : mixed
$categories  : mixed
$disponibility  : mixed
available money, for previsionnel calculation
$disqusAccessToken  : mixed
$disqusId  : mixed
$expenses  : mixed
expenses by kind, for previsionnel
$festivals  : mixed
variabilised products sold
$googleAccessToken  : mixed
$googleId  : mixed
$mastodonId  : mixed
$products  : mixed
templates products
$productsSold  : mixed
variabilised products sold
$sellRecords  : mixed
$seriesFestivals  : mixed
series of festivals
$twitterAccessToken  : mixed
$twitterId  : mixed

Methods

addCategory()  : User
Add category
addExpense()  : User
Add expense.
addFestival()  : User
Add festival.
addProduct()  : User
Add product
addProductsSold()  : mixed
addSellRecord()  : User
Add sellRecord
addSellRecords()  : mixed
addSeriesFestival()  : User
Add seriesFestival.
getActiveFestival()  : Festival|null
Get activeFestival.
getAverageMonthlyEarnings()  : mixed
getCategories()  : mixed
getDisponibility()  : mixed
getDisqusAccessToken()  : mixed
getDisqusId()  : string|null
Get disqusId.
getExpenses()  : mixed
getFestivals()  : Collection
Get festivals.
getGoogleAccessToken()  : mixed
getGoogleId()  : string
Get googleId
getId()  : int
Get id
getMastodonId()  : string|null
Get mastodonId.
getProducts()  : mixed
getProductsSold()  : mixed
getSellRecords()  : mixed
getSeriesFestivals()  : mixed
getTwitterAccessToken()  : mixed
getTwitterId()  : string|null
Get twitterId.
removeCategory()  : mixed
Remove category
removeExpense()  : bool
Remove expense.
removeFestival()  : bool
Remove festival.
removeProduct()  : mixed
Remove product
removeProductsSold()  : mixed
Remove productsSold
removeSellRecord()  : mixed
Remove sellRecord
removeSeriesFestival()  : bool
Remove seriesFestival.
setActiveFestival()  : User
Set activeFestival.
setAverageMonthlyEarnings()  : mixed
setCategories()  : mixed
setDisponibility()  : mixed
setDisqusAccessToken()  : mixed
setDisqusId()  : User
Set disqusId.
setExpenses()  : mixed
setGoogleAccessToken()  : mixed
setGoogleId()  : User
Set googleId
setMastodonId()  : User
Set mastodonId.
setProducts()  : mixed
setProductsSold()  : mixed
setSellRecords()  : mixed
setSeriesFestivals()  : mixed
setTwitterAccessToken()  : mixed
setTwitterId()  : User
Set twitterId.

Properties

$id

protected int $id
Tags
ORM\Column

(name="id", type="integer")

ORM\Id
ORM\GeneratedValue

(strategy="AUTO")

$activeFestival

current festival we are recording sellings for

private mixed $activeFestival
Tags
ORM\OneToOne

(targetEntity="App\Entity\Festival")

$averageMonthlyEarnings

private mixed $averageMonthlyEarnings
Tags
ORM\Column

(name="averageMonthlyEarnings", type="float", nullable=true)

$categories

private mixed $categories
Tags
ORM\ManyToMany

(targetEntity="App\Entity\ProductCategory", inversedBy="users")

$disponibility

available money, for previsionnel calculation

private mixed $disponibility
Tags
ORM\Column

(name="disponibility", type="float", nullable=true)

$disqusAccessToken

private mixed $disqusAccessToken

$disqusId

private mixed $disqusId
Tags
ORM\Column

(name="disqus_id", type="string", length=255, nullable=true)

$expenses

expenses by kind, for previsionnel

private mixed $expenses
Tags
ORM\OneToMany

(targetEntity="App\Entity\ExpenseKind", mappedBy="user")

$festivals

variabilised products sold

private mixed $festivals
Tags
ORM\OneToMany

(targetEntity="App\Entity\Festival", mappedBy="user")

$googleAccessToken

private mixed $googleAccessToken

$googleId

private mixed $googleId
Tags
ORM\Column

(name="google_id", type="string", length=255, nullable=true)

$mastodonId

private mixed $mastodonId
Tags
ORM\Column

(name="mastodon_id", type="string", length=255, nullable=true)

$products

templates products

private mixed $products
Tags
ORM\OneToMany

(targetEntity="App\Entity\Product", mappedBy="user")

$productsSold

variabilised products sold

private mixed $productsSold
Tags
ORM\OneToMany

(targetEntity="App\Entity\ProductSold", mappedBy="user")

$sellRecords

private mixed $sellRecords
Tags
ORM\OneToMany

(targetEntity="App\Entity\SellRecord", mappedBy="user")

$seriesFestivals

series of festivals

private mixed $seriesFestivals
Tags
ORM\OneToMany

(targetEntity="App\Entity\SerieFestival", mappedBy="user")

$twitterAccessToken

private mixed $twitterAccessToken

$twitterId

private mixed $twitterId
Tags
ORM\Column

(name="twitter_id", type="string", length=255, nullable=true)

Methods

addProductsSold()

public addProductsSold(mixed $product) : mixed
Parameters
$product : mixed

addSellRecords()

public addSellRecords(mixed $sellRecords) : mixed
Parameters
$sellRecords : mixed

getActiveFestival()

Get activeFestival.

public getActiveFestival() : Festival|null
Return values
Festival|null

getAverageMonthlyEarnings()

public getAverageMonthlyEarnings() : mixed

getCategories()

public getCategories() : mixed

getDisponibility()

public getDisponibility() : mixed

getDisqusAccessToken()

public getDisqusAccessToken() : mixed

getDisqusId()

Get disqusId.

public getDisqusId() : string|null
Return values
string|null

getExpenses()

public getExpenses() : mixed

getGoogleAccessToken()

public getGoogleAccessToken() : mixed

getGoogleId()

Get googleId

public getGoogleId() : string
Return values
string

getId()

Get id

public getId() : int
Return values
int

getMastodonId()

Get mastodonId.

public getMastodonId() : string|null
Return values
string|null

getProducts()

public getProducts() : mixed

getProductsSold()

public getProductsSold() : mixed

getSellRecords()

public getSellRecords() : mixed

getSeriesFestivals()

public getSeriesFestivals() : mixed

getTwitterAccessToken()

public getTwitterAccessToken() : mixed

getTwitterId()

Get twitterId.

public getTwitterId() : string|null
Return values
string|null

removeExpense()

Remove expense.

public removeExpense(ExpenseKind $expense) : bool
Parameters
$expense : ExpenseKind
Return values
bool

TRUE if this collection contained the specified element, FALSE otherwise.

removeFestival()

Remove festival.

public removeFestival(Festival $festival) : bool
Parameters
$festival : Festival
Return values
bool

TRUE if this collection contained the specified element, FALSE otherwise.

removeProduct()

Remove product

public removeProduct(Product $product) : mixed
Parameters
$product : Product

removeProductsSold()

Remove productsSold

public removeProductsSold(ProductSold $productsSold) : mixed
Parameters
$productsSold : ProductSold

removeSellRecord()

Remove sellRecord

public removeSellRecord(SellRecord $sellRecord) : mixed
Parameters
$sellRecord : SellRecord

removeSeriesFestival()

Remove seriesFestival.

public removeSeriesFestival(SerieFestival $seriesFestival) : bool
Parameters
$seriesFestival : SerieFestival
Return values
bool

TRUE if this collection contained the specified element, FALSE otherwise.

setActiveFestival()

Set activeFestival.

public setActiveFestival([Festival|null $activeFestival = null ]) : User
Parameters
$activeFestival : Festival|null = null
Return values
User

setAverageMonthlyEarnings()

public setAverageMonthlyEarnings(mixed $averageMonthlyEarnings) : mixed
Parameters
$averageMonthlyEarnings : mixed

setCategories()

public setCategories(mixed $categories) : mixed
Parameters
$categories : mixed

setDisponibility()

public setDisponibility(mixed $disponibility) : mixed
Parameters
$disponibility : mixed

setDisqusAccessToken()

public setDisqusAccessToken(mixed $disqusAccessToken) : mixed
Parameters
$disqusAccessToken : mixed

setDisqusId()

Set disqusId.

public setDisqusId([string|null $disqusId = null ]) : User
Parameters
$disqusId : string|null = null
Return values
User

setExpenses()

public setExpenses(mixed $expenses) : mixed
Parameters
$expenses : mixed

setGoogleAccessToken()

public setGoogleAccessToken(mixed $googleAccessToken) : mixed
Parameters
$googleAccessToken : mixed

setGoogleId()

Set googleId

public setGoogleId(string $googleId) : User
Parameters
$googleId : string
Return values
User

setMastodonId()

Set mastodonId.

public setMastodonId([string|null $mastodonId = null ]) : User
Parameters
$mastodonId : string|null = null
Return values
User

setProducts()

public setProducts(mixed $products) : mixed
Parameters
$products : mixed

setProductsSold()

public setProductsSold(mixed $productsSold) : mixed
Parameters
$productsSold : mixed

setSellRecords()

public setSellRecords(mixed $sellRecords) : mixed
Parameters
$sellRecords : mixed

setSeriesFestivals()

public setSeriesFestivals(mixed $seriesFestivals) : mixed
Parameters
$seriesFestivals : mixed

setTwitterAccessToken()

public setTwitterAccessToken(mixed $TwitterAccessToken) : mixed
Parameters
$TwitterAccessToken : mixed

setTwitterId()

Set twitterId.

public setTwitterId([string|null $twitterId = null ]) : User
Parameters
$twitterId : string|null = null
Return values
User

        
On this page

Search results