ModuleProperty
in package
Uses
Properties
A place for modules to store per-module private data.
Tags
Table of Contents
- $owner : mixed
- $propertyName : mixed
- $propertyValue : mixed
- getName() : string
- Returns the name of the property.
- getOwner() : Module
- Returns the owner.
- getValue() : mixed
- Returns the stored property.
- setName() : mixed
- Sets the name of the property.
- setOwner() : mixed
- Sets the owner.
- setValue() : mixed
- Sets the stored property.
Properties
$owner
private
mixed
$owner
Tags
$propertyName
private
mixed
$propertyName
= ""
Tags
$propertyValue
private
mixed
$propertyValue
= null
Tags
Methods
getName()
Returns the name of the property.
public
getName() : string
Return values
string —getOwner()
Returns the owner.
public
getOwner() : Module
Return values
Module —getValue()
Returns the stored property.
public
getValue() : mixed
Return values
mixed —setName()
Sets the name of the property.
public
setName(string $name) : mixed
Parameters
- $name : string
Tags
Return values
mixed —setOwner()
Sets the owner.
public
setOwner(Module $owner) : mixed
Parameters
- $owner : Module
Return values
mixed —setValue()
Sets the stored property.
public
setValue(mixed $value) : mixed
Parameters
- $value : mixed