getFKClass
Last updated Apr 6th, 2019 | Page history | Improve this page | Report an issue
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$306 per month—let's make that $500!
Learn morexPDOObject::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"
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$306 per month—let's make that $500!
Learn more