mirror of
https://github.com/netzmacht/contao-leaflet-maps.git
synced 2025-11-30 12:03:44 +01:00
Prepare for backend usage.
This commit is contained in:
@@ -40,7 +40,7 @@ class ContaoAssets implements Assets
|
||||
break;
|
||||
|
||||
case static::TYPE_FILE:
|
||||
if (!\Config::get('debugMode')) {
|
||||
if (!\Config::get('debugMode') && TL_MODE === 'FE') {
|
||||
$script .= '|static';
|
||||
}
|
||||
|
||||
|
||||
@@ -116,10 +116,7 @@ class BootSubscriber implements EventSubscriberInterface
|
||||
*/
|
||||
public function loadAssets()
|
||||
{
|
||||
$GLOBALS['TL_JAVASCRIPT'][] = 'assets/leaflet/maps/contao-leaflet.js' . (\Config::get('debugMode')
|
||||
? ''
|
||||
: '|static'
|
||||
);
|
||||
$GLOBALS['TL_JAVASCRIPT'][] = 'assets/leaflet/maps/contao-leaflet.js' . $this->staticFlag();
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -160,10 +157,16 @@ class BootSubscriber implements EventSubscriberInterface
|
||||
// @codingStandardsIgnoreStart
|
||||
// TODO: Cache it.
|
||||
// codingStandardsIgnoreEnd
|
||||
$GLOBALS['TL_JAVASCRIPT'][] = 'assets/leaflet/js/icons.js' . (\Config::get('debugMode')
|
||||
? ''
|
||||
: '|static'
|
||||
);
|
||||
$GLOBALS['TL_JAVASCRIPT'][] = 'assets/leaflet/js/icons.js' . $this->staticFlag();
|
||||
}
|
||||
}
|
||||
|
||||
private function staticFlag()
|
||||
{
|
||||
if (\Config::get('debugMode') || TL_MODE !== 'FE') {
|
||||
return '';
|
||||
}
|
||||
|
||||
return '|static';
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user