getFKClass
Last updated Apr 7th, 2019 | Page history | Improve this page | Report an issue
xPDOObject::getFKClass()¶
Get the name of a class related by foreign key to a specified field key. This is generally used to lookup classes involved in one-to-one relationships with the current object.
Syntax¶
API Docs: http://api.modxcms.com/xpdo/om/xPDOObject.html#getFKClass
void getFKClass (string $k)
Examples¶
Get the name of the class related to the field 'book' on the object 'myChapter':
$chapter = $xpdo->getObject('myChapter',12);
echo $chapter->getFKClass('book');
// prints "myBook"