xPDO.setOption
Last updated Apr 20th, 2021 | Page history | Improve this page | Report an issue
xPDO::setOption¶
Sets an xPDO configuration option value.
Syntax¶
API Docs: https://api.modx.com/revolution/2.2/db_core_xpdo_xpdo.class.html#\xPDO::setOption()
void setOption (string $key, mixed $value)
Example¶
Set the DB caching to false.
$xpdo->setOption(xPDO::OPT_CACHE_DB,false);
Remember: setOption changes the option value only for the current request: the values are not persisted.