本文整理匯總了PHP中Opportunity::get_linked_fields方法的典型用法代碼示例。如果您正苦於以下問題:PHP Opportunity::get_linked_fields方法的具體用法?PHP Opportunity::get_linked_fields怎麽用?PHP Opportunity::get_linked_fields使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Opportunity
的用法示例。
在下文中一共展示了Opportunity::get_linked_fields方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: processListViews
/**
* Add and Remove fields from all the list views
*
* @param array $fieldMap How are we going to change the fields
* @return array The Modules which had their subpanels affected
*/
public function processListViews(array $fieldMap)
{
// get the views for the module
$mm = MetadataManager::getManager();
$views = $mm->getModuleViews('Opportunities');
// fix the selected-list view
$this->processSelectedListView($fieldMap);
// fix the dupecheck-list view
$this->processDupeCheckListView($fieldMap);
// get the generic list view
$this->processListView($fieldMap);
// get the mobile list view now
$this->processMobileListView($fieldMap);
$subpanel_modules = array('Opportunities');
$links = $this->bean->get_linked_fields();
foreach ($links as $link => $def) {
if ($this->bean->load_relationship($link) && $this->bean->{$link} instanceof Link2) {
$linkname = $this->bean->{$link}->getRelatedModuleLinkName();
if (!empty($linkname)) {
$this->processListView($fieldMap, $this->bean->{$link}->getRelatedModuleName(), $linkname);
$subpanel_modules[] = $this->bean->{$link}->getRelatedModuleName();
}
}
}
return $subpanel_modules;
}