mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 08:17:18 +08:00
git-subtree-dir: public/legacy git-subtree-split: 817a12dc0c30c189f56d5cb1f7dc37a9631bdbe3
21 lines
No EOL
526 B
PHP
21 lines
No EOL
526 B
PHP
<?php
|
|
namespace Api\V8\Helper;
|
|
class VarDefHelper
|
|
{
|
|
/**
|
|
* @param \SugarBean $bean
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getAllRelationships(\SugarBean $bean)
|
|
{
|
|
$relations = [];
|
|
$linkedFields = $bean->get_linked_fields();
|
|
foreach ($linkedFields as $relation => $varDef) {
|
|
if (isset($varDef['module']) && $bean->load_relationship($relation)) {
|
|
$relations[$relation] = $varDef['module'];
|
|
}
|
|
}
|
|
return $relations;
|
|
}
|
|
} |