xPDO.getFields
Last updated Apr 20th, 2021 | Page history | Improve this page | Report an issue
xPDO::getFields¶
Gets a list of fields (or columns) for an object by class name.
This includes default values for each field and is used by the objects themselves to build their initial attributes based on class inheritance.
Syntax¶
API Docs: https://api.modx.com/revolution/2.2/db_core_xpdo_xpdo.class.html#\xPDO::getFields()
array getFields (string $className)
Example¶
Get a list of fields for the Box object, which has 3 fields: id, width and height:
$fields = $xpdo->getFields('Box');
print_r($fields); // prints: Array ([id] => 1, [width] => 10, [height] => 23)