Spaces:
No application file
No application file
File size: 5,807 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 |
<?php
declare(strict_types=1);
namespace Mautic\CoreBundle\Twig\Extension;
use Mautic\CoreBundle\Twig\Helper\AssetsHelper;
use Twig\Extension\AbstractExtension;
use Twig\TwigFunction;
class AssetExtension extends AbstractExtension
{
public function __construct(
protected AssetsHelper $assetsHelper
) {
}
/**
* @see Twig_Extension::getFunctions()
*/
public function getFunctions()
{
return [
new TwigFunction('outputScripts', [$this, 'outputScripts'], ['is_safe' => ['all']]),
new TwigFunction('includeScript', [$this, 'includeScript'], ['is_safe' => ['all']]),
new TwigFunction('includeStylesheet', [$this, 'includeStylesheet'], ['is_safe' => ['all']]),
new TwigFunction('outputHeadDeclarations', [$this, 'outputHeadDeclarations'], ['is_safe' => ['all']]),
new TwigFunction('getAssetUrl', [$this, 'getAssetUrl'], ['is_safe' => ['html']]),
new TwigFunction('getOverridableUrl', [$this, 'getOverridableUrl'], ['is_safe' => ['html']]),
new TwigFunction('addAssetScript', [$this, 'addScript'], ['is_safe' => ['html']]),
new TwigFunction('outputStyles', [$this, 'outputStyles'], ['is_safe' => ['html']]),
new TwigFunction('outputSystemScripts', [$this, 'outputSystemScripts'], ['is_safe' => ['html']]),
new TwigFunction('outputSystemStylesheets', [$this, 'outputSystemStylesheets'], ['is_safe' => ['html']]),
new TwigFunction('assetsGetImagesPath', [$this, 'getImagesPath']),
new TwigFunction('assetsGetPrefix', [$this, 'getAssetPrefix']),
new TwigFunction('assetAddScriptDeclaration', [$this, 'addScriptDeclaration']),
new TwigFunction('assetAddCustomDeclaration', [$this, 'addCustomDeclaration']),
new TwigFunction('assetGetCountryFlag', [$this, 'getCountryFlag']),
new TwigFunction('assetGetBaseUrl', [$this, 'getBaseUrl'], ['is_safe' => ['html']]),
new TwigFunction('assetMakeLinks', [$this, 'makeLinks'], ['is_safe' => ['html']]),
];
}
public function getName(): string
{
return 'coreasset';
}
public function outputSystemStylesheets(): string
{
ob_start();
$this->assetsHelper->outputSystemStylesheets();
return ob_get_clean();
}
/**
* Loads an addon JS script file.
*/
public function includeScript(string $assetFilePath, string $onLoadCallback = '', string $alreadyLoadedCallback = ''): string
{
return $this->assetsHelper->includeScript($assetFilePath, $onLoadCallback, $alreadyLoadedCallback);
}
public function includeStylesheet(string $assetFilePath): string
{
return $this->assetsHelper->includeStylesheet($assetFilePath);
}
/**
* @param bool $includeEditor
*/
public function outputSystemScripts($includeEditor = false): string
{
ob_start();
$this->assetsHelper->outputSystemScripts($includeEditor);
return ob_get_clean();
}
public function outputScripts(string $name): string
{
ob_start();
$this->assetsHelper->outputScripts($name);
return ob_get_clean();
}
public function outputStyles(): string
{
ob_start();
$this->assetsHelper->outputStyles();
return ob_get_clean();
}
public function outputHeadDeclarations(): string
{
ob_start();
$this->assetsHelper->outputHeadDeclarations();
return ob_get_clean();
}
public function addScript(string $script, string $location = 'head', bool $async = false, string $name = null): AssetsHelper
{
return $this->assetsHelper->addScript($script, $location, $async, $name);
}
/**
* @param string|null $packageName
* @param string|null $version
* @param bool $absolute
* @param bool $ignorePrefix
*/
public function getAssetUrl(string $path, $packageName = null, $version = null, $absolute = false, $ignorePrefix = false): string
{
return $this->assetsHelper->getUrl($path, $packageName, $version, $absolute, $ignorePrefix);
}
/**
* @param string $path
* @param bool|false $absolute
*/
public function getOverridableUrl($path, $absolute = false): string
{
return $this->assetsHelper->getOverridableUrl($path, $absolute);
}
public function getImagesPath(): string
{
return $this->assetsHelper->getImagesPath();
}
public function getAssetPrefix(bool $includeEndingslash = false): string
{
return $this->assetsHelper->getAssetPrefix($includeEndingslash);
}
public function addScriptDeclaration(string $script, string $location = 'head'): string
{
$this->assetsHelper->addScriptDeclaration($script, $location);
return '';
}
public function addCustomDeclaration(string $script, string $location): string
{
$this->assetsHelper->addCustomDeclaration($script, $location);
return '';
}
/**
* @see Mautic\CoreBundle\Twig\Helper\AssetsHelper::getCountryFlag
*/
public function getCountryFlag(string $country, bool $urlOnly = true, string $class = ''): string
{
return $this->assetsHelper->getCountryFlag($country, $urlOnly, $class);
}
public function getBaseUrl(): string
{
return (string) $this->assetsHelper->getBaseUrl();
}
/**
* @param array<string> $protocols
* @param array<mixed> $attributes
*/
public function makeLinks(string $text, array $protocols = ['http', 'mail'], array $attributes = []): string
{
return $this->assetsHelper->makeLinks($text, $protocols, $attributes);
}
}
|