Home
last modified time | relevance | path

Searched refs:asset (Results 51 – 75 of 87) sorted by last modified time

1234

/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/
H A DUglifyJsFilter.php89 public function filterLoad(AssetInterface $asset) argument
98 public function filterDump(AssetInterface $asset) argument
132 file_put_contents($input, $asset->getContent());
148 throw FilterException::fromProcess($proc)->setInput($asset->getContent());
158 $asset->setContent($uglifiedJs);
H A DCallablesFilter.php40 public function filterLoad(AssetInterface $asset) argument
43 $callable($asset);
47 public function filterDump(AssetInterface $asset) argument
50 $callable($asset);
H A DCssEmbedFilter.php78 public function filterLoad(AssetInterface $asset) argument
82 public function filterDump(AssetInterface $asset) argument
104 if ($dir = $asset->getSourceDirectory()) {
125 file_put_contents($input, $asset->getContent());
132 throw FilterException::fromProcess($proc)->setInput($asset->getContent());
135 $asset->setContent($proc->getOutput());
H A DCssMinFilter.php53 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 DCssRewriteFilter.php23 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 DDartFilter.php32 public function filterLoad(AssetInterface $asset) argument
37 file_put_contents($input, $asset->getContent());
59 $asset->setContent(file_get_contents($output));
63 public function filterDump(AssetInterface $asset) argument
H A DJSMinPlusFilter.php26 public function filterLoad(AssetInterface $asset) argument
30 public function filterDump(AssetInterface $asset) argument
32 $asset->setContent(\JSMinPlus::minify($asset->getContent()));
H A DJpegtranFilter.php66 public function filterLoad(AssetInterface $asset) argument
70 public function filterDump(AssetInterface $asset) argument
91 file_put_contents($input, $asset->getContent());
98 throw FilterException::fromProcess($proc)->setInput($asset->getContent());
101 $asset->setContent($proc->getOutput());
H A DLessphpFilter.php89 public function filterLoad(AssetInterface $asset) argument
92 if ($dir = $asset->getSourceDirectory()) {
116 $asset->setContent($lc->parse($asset->getContent(), $this->presets));
124 public function filterDump(AssetInterface $asset) argument
H A DMinifyCssCompressorFilter.php27 public function filterLoad(AssetInterface $asset) argument
31 public function filterDump(AssetInterface $asset) argument
33 $asset->setContent(\Minify_CSS_Compressor::process($asset->getContent()));
H A DPackerFilter.php47 public function filterLoad(AssetInterface $asset) argument
51 public function filterDump(AssetInterface $asset) argument
53 …$packer = new \JavaScriptPacker($asset->getContent(), $this->encoding, $this->fastDecode, $this->s…
54 $asset->setContent($packer->pack());
H A DRooleFilter.php42 public function filterLoad(AssetInterface $asset) argument
47 file_put_contents($input, $asset->getContent());
71 $asset->setContent(file_get_contents($output));
75 public function filterDump(AssetInterface $asset) argument
H A DTypeScriptFilter.php35 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
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/Yui/
H A DBaseCompressorFilter.php54 public function filterLoad(AssetInterface $asset) argument
H A DJsCompressorFilter.php43 public function filterDump(AssetInterface $asset) argument
59 $asset->setContent($this->compress($asset->getContent(), 'js', $options));
/plugin/jplayer/vendor/happyworm/jplayer/lib/aurora/
H A Daurora.js3395 function Player(asset) { argument
3396 this.asset = asset;
3456 if (!this.asset) {
3460 return this.asset.start(false);
3495 this.asset.stop();
3596 function Queue(asset) { argument
3597 this.asset = asset;
3604 this.asset.on('data', this.write);
3610 this.asset.decodePacket();
3631 this.asset.decodePacket();
[all …]
/plugin/jplayer/vendor/kriswallsmith/assetic/
H A DCHANGELOG-1.1.md4 * Fixed deep mtime on asset collections
12 * Fixed cloning of asset collections
48 * Improved the error message in getModifiedTime when a file asset uses an invalid file
49 * added support for asset variables:
52 variable values, and then to simply deliver the correct asset version at runtime.
H A DCHANGELOG-1.2.md49 * Fixed the support of asset variables in GlobAsset
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/
H A DAssetCache.php25 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 DAssetCollection.php46 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 DBaseAsset.php91 $asset = clone $this;
92 $asset->setContent($content);
94 $filter->filterLoad($asset);
95 $this->content = $asset->getContent();
111 $asset = clone $this;
112 $filter->filterDump($asset);
114 return $asset->getContent();
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/
H A DAsseticFilterInvoker.php55 $asset = $this->factory->createAsset($input, $this->filters, $options + $this->options);
57 return $asset->getTargetPath();
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Factory/
H A DAssetFactory.php189 $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/Factory/Worker/
H A DCacheBustingWorker.php32 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/Filter/GoogleClosure/
H A DCompilerApiFilter.php37 public function filterDump(AssetInterface $asset) argument
40 'js_code' => $asset->getContent(),
128 $asset->setContent($data->compiledCode);

1234