mirror of
https://github.com/a2nt/silverstripe-mapboxfield.git
synced 2024-10-22 12:05:53 +00:00
20 lines
321 B
PHP
20 lines
321 B
PHP
<?php
|
|
|
|
|
|
namespace A2nt\SilverStripeMapboxField;
|
|
|
|
use SilverStripe\Core\Extension;
|
|
|
|
class SiteConfigExtension extends Extension
|
|
{
|
|
public function MapAPIKey()
|
|
{
|
|
return MapboxField::getAccessToken();
|
|
}
|
|
|
|
public function MapStyle()
|
|
{
|
|
return MapboxField::config()->get('map_style');
|
|
}
|
|
}
|