mirror of
https://github.com/wilr/silverstripe-googlesitemaps.git
synced 2024-10-22 11:05:48 +02:00
Merge pull request #126 from danaenz/subsites-support
Add Subsite support
This commit is contained in:
commit
c00f420a8b
@ -18,6 +18,15 @@ class GoogleSitemapExtension extends DataExtension
|
||||
|
||||
if ($this->owner->hasMethod('AbsoluteLink')) {
|
||||
$hostHttp = parse_url(Director::protocolAndHost(), PHP_URL_HOST);
|
||||
|
||||
// Subsite support
|
||||
if (class_exists('Subsite')) {
|
||||
// Subsite will have a different domain from Director::protocolAndHost
|
||||
if ($subsite = Subsite::currentSubsite()) {
|
||||
$hostHttp = parse_url(Director::protocol() . $subsite->getPrimaryDomain(), PHP_URL_HOST);
|
||||
}
|
||||
}
|
||||
|
||||
$objHttp = parse_url($this->owner->AbsoluteLink(), PHP_URL_HOST);
|
||||
|
||||
if ($objHttp != $hostHttp) {
|
||||
|
Loading…
Reference in New Issue
Block a user