BcBaserHelper::getRelatedSiteLinks PHP Method

    public function getRelatedSiteLinks($id = null, $excludeIds = [])
    {
        $options = [];
        if ($excludeIds) {
            $options['excludeIds'] = $excludeIds;
        }
        $links = $this->BcContents->getRelatedSiteLinks($id, $options);
        return $this->getElement('related_site_links', ['links' => $links]);
    }