mirror of
https://github.com/wilr/silverstripe-googlesitemaps.git
synced 2024-10-22 11:05:48 +02:00
12 lines
276 B
PHP
12 lines
276 B
PHP
<?php
|
|
|
|
// add the extension to pages
|
|
if (class_exists('SiteTree')) {
|
|
SiteTree::add_extension('GoogleSitemapSiteTreeExtension');
|
|
}
|
|
|
|
// if you need to add this to DataObjects include the following in
|
|
// your own _config:
|
|
|
|
// GoogleSiteMap::register_dataobject('MyDataObject');
|