Interface ConfigInterface.
get(string $strKey) : mixed
stringThe name of the information to retrieve.
mixed|| nullgetAmount() : int
intgetFields() : array
arraygetFilter() : array
arraygetId() : mixed
mixedgetIdOnly() : bool
| SuppressWarnings | (PHPMD.BooleanGetMethodName) |
|---|
boolgetIds() : array
arraygetSorting() : array
arraygetStart() : int
intinit() : mixed
| todo | : do we want to keep this behaviour? Third party will not know the correct class anyway. |
|---|
mixedset(string $strKey, mixed $varValue) : \ContaoCommunityAlliance\DcGeneral\Data\ConfigInterface
stringThe name of the information to retrieve.
mixedThe value to store.
setAmount(int $intAmount) : \ContaoCommunityAlliance\DcGeneral\Data\ConfigInterface
intThe amount to use.
setFields(array $arrFields) : \ContaoCommunityAlliance\DcGeneral\Data\ConfigInterface
arrayArray of property names.
setFilter(array $arrFilter) : \ContaoCommunityAlliance\DcGeneral\Data\ConfigInterface
arrayThe array containing the filter values.
setId(mixed $mixId) : \ContaoCommunityAlliance\DcGeneral\Data\ConfigInterface
mixedThe id of the element to be retrieved.
setIdOnly(bool $blnIdOnly) : \ContaoCommunityAlliance\DcGeneral\Data\ConfigInterface
boolBoolean flag to determine that only Ids shall be returned when calling fetchAll().
setIds(array $arrIds) : \ContaoCommunityAlliance\DcGeneral\Data\ConfigInterface
arrayThe list of ids to be retrieved.
setSorting(array $arrSorting) : \ContaoCommunityAlliance\DcGeneral\Data\ConfigInterface
arrayThe sorting array to use.
setStart(int $intStart) : \ContaoCommunityAlliance\DcGeneral\Data\ConfigInterface
intNumber of first element to return.