protected function AssetOptimizer::convertPathForceHttps in Advanced CSS/JS Aggregation 8.3
Same name and namespace in other branches
- 8.4 src/Asset/AssetOptimizer.php \Drupal\advagg\Asset\AssetOptimizer::convertPathForceHttps()
Convert http:// to https://.
Parameters
string $path: Path to check.
Return value
string The modified path or the original if already https or relative.
1 call to AssetOptimizer::convertPathForceHttps()
- AssetOptimizer::processAssetArray in src/
Asset/ AssetOptimizer.php - Process a core asset array.
File
- src/
Asset/ AssetOptimizer.php, line 394
Class
- AssetOptimizer
- Defines the base AdvAgg optimizer.
Namespace
Drupal\advagg\AssetCode
protected function convertPathForceHttps($path) {
if (strpos($path, 'http://') === 0) {
$path = 'https://' . substr($path, 7);
}
return $path;
}