/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/ |
H A D | AssetCache.php | 25 private $asset; variable in Assetic\\Asset\\AssetCache 30 $this->asset = $asset; 36 $this->asset->ensureFilter($filter); 41 return $this->asset->getFilters(); 46 $this->asset->clearFilters(); 77 return $this->asset->getContent(); 82 $this->asset->setContent($content); 117 return $this->asset->getVars(); 122 $this->asset->setValues($values); 127 return $this->asset->getValues(); [all …]
|
H A D | AssetCollection.php | 46 foreach ($assets as $asset) { 47 $this->add($asset); 70 $this->assets[] = $asset; 76 $clone = isset($this->clones[$asset]) ? $this->clones[$asset] : null; 83 if ($asset instanceof AssetCollectionInterface && $asset->removeLeaf($needle, true)) { 98 $clone = isset($this->clones[$asset]) ? $this->clones[$asset] : null; 138 foreach ($this as $asset) { 150 foreach ($this as $asset) { 202 foreach ($this as $asset) { 229 foreach ($this as $asset) { [all …]
|
H A D | AssetReference.php | 28 private $asset; variable in Assetic\\Asset\\AssetReference 40 if ($this->asset) { 41 $this->asset = clone $this->asset; 136 $asset = $this->resolve(); 143 $asset = $this->resolve(); 146 $asset->ensureFilter($filter); 152 if ($this->asset) { 153 return $this->asset; 156 $asset = $this->am->get($this->name); 159 $asset = $this->asset = clone $asset; [all …]
|
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Factory/Worker/ |
H A D | CacheBustingWorker.php | 32 public function process(AssetInterface $asset, AssetFactory $factory) argument 34 if (!$path = $asset->getTargetPath()) { 44 $replace = $this->separator.$this->getHash($asset, $factory).'.'.$search; 50 $asset->setTargetPath( 55 protected function getHash(AssetInterface $asset, AssetFactory $factory) argument 59 hash_update($hash, $factory->getLastModified($asset)); 61 if ($asset instanceof AssetCollectionInterface) { 62 foreach ($asset as $i => $leaf) {
|
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Factory/ |
H A D | AssetFactory.php | 189 $asset = $this->createAssetCollection(array(), $options); 198 $asset->add($this->parseInput($input, $options)); 206 $asset->ensureFilter($this->getFilter($filter)); 237 return $this->applyWorkers($asset); 251 public function getLastModified(AssetInterface $asset) argument 254 foreach ($asset instanceof AssetCollectionInterface ? $asset : array($asset) as $leaf) { 382 foreach ($asset as $leaf) { 387 $asset->replaceLeaf($leaf, $retval); 393 $retval = $worker->process($asset, $this); 396 $asset = $retval; [all …]
|
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/ |
H A D | AsseticNode.php | 27 * @param AssetInterface $asset The asset 36 …public function __construct(AssetInterface $asset, \Twig_Node $body, array $inputs, array $filters… argument 43 array('asset' => $asset, 'inputs' => $inputs, 'filters' => $filters, 'name' => $name) 102 protected function compileAsset(\Twig_Compiler $compiler, AssetInterface $asset, $name) argument 104 if ($vars = $asset->getVars()) { 127 $this->compileAssetUrl($compiler, $asset, $name); 135 protected function compileAssetUrl(\Twig_Compiler $compiler, AssetInterface $asset, $name) argument 137 if (!$vars = $asset->getVars()) { 138 $compiler->repr($asset->getTargetPath()); 145 ->string($asset->getTargetPath())
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudDataplex/ |
H A D | GoogleCloudDataplexV1ActionFailedSecurityPolicyApply.php | 25 public $asset; variable in Google\\Service\\CloudDataplex\\GoogleCloudDataplexV1ActionFailedSecurityPolicyApply 30 public function setAsset($asset) argument 32 $this->asset = $asset; 39 return $this->asset;
|
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/ |
H A D | AssetWriter.php | 57 public function writeAsset(AssetInterface $asset) argument 59 foreach (VarUtils::getCombinations($asset->getVars(), $this->values) as $combination) { 60 $asset->setValues($combination); 64 $asset->getTargetPath(), 65 $asset->getVars(), 66 $asset->getValues() 68 $asset->dump()
|
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/ |
H A D | SprocketsFilter.php | 62 public function filterLoad(AssetInterface $asset) argument 94 file_put_contents($tmpAsset, $asset->getContent()); 101 $this->getHack($asset), 117 throw FilterException::fromProcess($proc)->setInput($asset->getContent()); 120 $asset->setContent($proc->getOutput()); 123 public function filterDump(AssetInterface $asset) argument 133 private function getHack(AssetInterface $asset) argument 148 if ($dir = $asset->getSourceDirectory()) {
|
H A D | StylusFilter.php | 66 public function filterLoad(AssetInterface $asset) argument 85 if ($dir = $asset->getSourceDirectory()) { 87 $parserOptions['filename'] = basename($asset->getSourcePath()); 98 json_encode($asset->getContent()), 108 throw FilterException::fromProcess($proc)->setInput($asset->getContent()); 111 $asset->setContent($proc->getOutput()); 117 public function filterDump(AssetInterface $asset) argument
|
H A D | AutoprefixerFilter.php | 57 public function filterLoad(AssetInterface $asset) argument 59 $input = $asset->getContent(); 72 throw FilterException::fromProcess($proc)->setInput($asset->getContent()); 75 $asset->setContent(file_get_contents($output)); 82 * @param AssetInterface $asset An asset 84 public function filterDump(AssetInterface $asset) argument
|
H A D | PhpCssEmbedFilter.php | 33 public function filterLoad(AssetInterface $asset) argument 36 if ($dir = $asset->getSourceDirectory()) { 40 $asset->setContent($pce->embedString($asset->getContent())); 43 public function filterDump(AssetInterface $asset) argument
|
H A D | TypeScriptFilter.php | 35 public function filterLoad(AssetInterface $asset) argument 41 if ($sourcePath = $asset->getSourcePath()) { 51 file_put_contents($inputPath, $asset->getContent()); 64 throw FilterException::fromProcess($proc)->setInput($asset->getContent()); 74 $asset->setContent($compiledJs); 77 public function filterDump(AssetInterface $asset) argument
|
H A D | EmberPrecompileFilter.php | 37 public function filterLoad(AssetInterface $asset) argument 43 if ($sourcePath = $asset->getSourcePath()) { 53 file_put_contents($inputPath, $asset->getContent()); 71 throw FilterException::fromProcess($process)->setInput($asset->getContent()); 81 $asset->setContent($compiledJs); 84 public function filterDump(AssetInterface $asset) argument
|
H A D | CssRewriteFilter.php | 23 public function filterLoad(AssetInterface $asset) argument 27 public function filterDump(AssetInterface $asset) argument 29 $sourceBase = $asset->getSourceRoot(); 30 $sourcePath = $asset->getSourcePath(); 31 $targetPath = $asset->getTargetPath(); 70 … $content = $this->filterReferences($asset->getContent(), function ($matches) use ($host, $path) { 100 $asset->setContent($content);
|
H A D | FilterInterface.php | 26 * @param AssetInterface $asset An asset 28 public function filterLoad(AssetInterface $asset); argument 33 * @param AssetInterface $asset An asset 35 public function filterDump(AssetInterface $asset); argument
|
H A D | CssMinFilter.php | 53 public function filterLoad(AssetInterface $asset) argument 57 public function filterDump(AssetInterface $asset) argument 63 if ($dir = $asset->getSourceDirectory()) { 70 $asset->setContent(\CssMin::minify($asset->getContent(), $filters, $plugins));
|
H A D | JSMinFilter.php | 26 public function filterLoad(AssetInterface $asset) argument 30 public function filterDump(AssetInterface $asset) argument 32 $asset->setContent(\JSMin::minify($asset->getContent()));
|
H A D | JSMinPlusFilter.php | 26 public function filterLoad(AssetInterface $asset) argument 30 public function filterDump(AssetInterface $asset) argument 32 $asset->setContent(\JSMinPlus::minify($asset->getContent()));
|
H A D | MinifyCssCompressorFilter.php | 27 public function filterLoad(AssetInterface $asset) argument 31 public function filterDump(AssetInterface $asset) argument 33 $asset->setContent(\Minify_CSS_Compressor::process($asset->getContent()));
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudAsset/ |
H A D | GoogleCloudAssetV1p7beta1RelatedAsset.php | 30 public $asset; variable in Google\\Service\\CloudAsset\\GoogleCloudAssetV1p7beta1RelatedAsset 53 public function setAsset($asset) argument 55 $this->asset = $asset; 62 return $this->asset;
|
H A D | RelatedAsset.php | 30 public $asset; variable in Google\\Service\\CloudAsset\\RelatedAsset 53 public function setAsset($asset) argument 55 $this->asset = $asset; 62 return $this->asset;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DataCatalog/ |
H A D | GoogleCloudDatacatalogV1DataplexSpec.php | 25 public $asset; variable in Google\\Service\\DataCatalog\\GoogleCloudDatacatalogV1DataplexSpec 40 public function setAsset($asset) argument 42 $this->asset = $asset; 49 return $this->asset;
|
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/Iterator/ |
H A D | AssetCollectionIterator.php | 56 $asset = current($this->assets); 59 return $asset; 63 if (!isset($this->clones[$asset])) { 64 $clone = $this->clones[$asset] = clone $asset; 67 …$name = sprintf('%s_%d', pathinfo($asset->getSourcePath(), PATHINFO_FILENAME) ?: 'part', $this->ke… 73 $clone = $this->clones[$asset];
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DisplayVideo/ |
H A D | CreateAssetResponse.php | 28 public function setAsset(Asset $asset) argument 30 $this->asset = $asset; 37 return $this->asset;
|