Home
last modified time | relevance | path

Searched refs:asset (Results 51 – 75 of 87) sorted by relevance

1234

/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/
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 DPngoutFilter.php84 public function filterLoad(AssetInterface $asset) argument
88 public function filterDump(AssetInterface $asset) argument
109 file_put_contents($input, $asset->getContent());
120 throw FilterException::fromProcess($proc)->setInput($asset->getContent());
123 $asset->setContent(file_get_contents($output));
H A DSassphpFilter.php29 public function filterLoad(AssetInterface $asset) argument
34 array($asset->getSourceDirectory()),
43 $css = $sass->compile($asset->getContent());
45 $asset->setContent($css);
48 public function filterDump(AssetInterface $asset) argument
H A DReactJsxFilter.php26 public function filterLoad(AssetInterface $asset) argument
38 file_put_contents($inputFile, $asset->getContent());
65 $asset->setContent(file_get_contents($outputFile));
72 public function filterDump(AssetInterface $asset) argument
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 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 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 DGssFilter.php83 public function filterLoad(AssetInterface $asset) argument
126 file_put_contents($input, $asset->getContent());
133 throw FilterException::fromProcess($proc)->setInput($asset->getContent());
136 $asset->setContent($proc->getOutput());
139 public function filterDump(AssetInterface $asset) argument
H A DUglifyJs2Filter.php77 public function filterLoad(AssetInterface $asset) argument
81 public function filterDump(AssetInterface $asset) argument
125 file_put_contents($input, $asset->getContent());
141 throw FilterException::fromProcess($proc)->setInput($asset->getContent());
148 $asset->setContent(file_get_contents($output));
H A DScssphpFilter.php89 public function filterLoad(AssetInterface $asset) argument
97 if ($dir = $asset->getSourceDirectory()) {
117 $asset->setContent($sc->compile($asset->getContent()));
120 public function filterDump(AssetInterface $asset) argument
H A DCompassFilter.php187 public function filterLoad(AssetInterface $asset) argument
190 if ($dir = $asset->getSourceDirectory()) {
317 } elseif ($path = $asset->getSourcePath()) {
336 file_put_contents($input, $asset->getContent());
356 throw FilterException::fromProcess($proc)->setInput($asset->getContent());
359 $asset->setContent(file_get_contents($output));
368 public function filterDump(AssetInterface $asset) argument
H A DCleanCssFilter.php232 public function filterLoad(AssetInterface $asset) argument
242 public function filterDump(AssetInterface $asset) argument
326 file_put_contents($input, $asset->getContent());
338 throw FilterException::fromProcess($proc)->setInput($asset->getContent());
341 $asset->setContent($proc->getOutput());
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/
H A DAsseticTokenParser.php134 … $asset = $this->factory->createAsset($inputs, $filters, $attributes + array('name' => $name));
136 …return $this->createBodyNode($asset, $body, $inputs, $filters, $name, $attributes, $token->getLine…
150 * @param AssetInterface $asset
161 …protected function createBodyNode(AssetInterface $asset, \Twig_Node $body, array $inputs, array $f… argument
168 … return $this->createNode($asset, $body, $inputs, $filters, $name, $attributes, $lineno, $tag);
171 return new AsseticNode($asset, $body, $inputs, $filters, $name, $attributes, $lineno, $tag);
175 * @param AssetInterface $asset
188 …protected function createNode(AssetInterface $asset, \Twig_NodeInterface $body, array $inputs, arr… argument
196 return new AsseticNode($asset, $body, $inputs, $filters, $name, $attributes, $lineno, $tag);
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/Yui/
H A DCssCompressorFilter.php24 public function filterDump(AssetInterface $asset) argument
26 $asset->setContent($this->compress($asset->getContent(), 'css'));
H A DJsCompressorFilter.php43 public function filterDump(AssetInterface $asset) argument
59 $asset->setContent($this->compress($asset->getContent(), 'js', $options));
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudDataplex/
H A DGoogleCloudDataplexV1Entity.php25 public $asset; variable in Google\\Service\\CloudDataplex\\GoogleCloudDataplexV1Entity
84 public function setAsset($asset) argument
86 $this->asset = $asset;
93 return $this->asset;
H A DGoogleCloudDataplexV1Action.php26 public $asset; variable in Google\\Service\\CloudDataplex\\GoogleCloudDataplexV1Action
75 public function setAsset($asset) argument
77 $this->asset = $asset;
84 return $this->asset;
/plugin/jplayer/vendor/kriswallsmith/assetic/
H A DREADME.md3 Assetic is an asset management framework for PHP.
17 // the code is merged when the asset is dumped
24 An Assetic asset is something with filterable content that can be loaded and
121 An asset manager is provided for organizing assets.
178 $factory = new AssetFactory('/path/to/asset/directory/');
184 '@reset', // load the asset manager's "reset" asset
224 of the asset.
235 $factory = new AssetFactory('/path/to/asset/directory/');
242 '@reset', // load the asset manager's "reset" asset
290 to what the asset factory uses:
[all …]
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.
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/
H A DAssetManager.php59 * @param AssetInterface $asset The asset
63 public function set($name, AssetInterface $asset) argument
69 $this->assets[$name] = $asset;
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/GoogleClosure/
H A DCompilerJarFilter.php42 public function filterDump(AssetInterface $asset) argument
100 file_put_contents($input, $asset->getContent());
107 throw FilterException::fromProcess($proc)->setInput($asset->getContent());
110 $asset->setContent($proc->getOutput());
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Factory/Worker/
H A DWorkerInterface.php27 * @param AssetInterface $asset An asset
32 public function process(AssetInterface $asset, AssetFactory $factory); argument
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/
H A DGlobAsset.php105 … $asset = new FileAsset($path, array(), $this->getSourceRoot(), null, $this->getVars());
106 $asset->setValues($this->getValues());
107 $this->add($asset);
H A DAssetCollectionInterface.php31 * @param AssetInterface $asset An asset
33 public function add(AssetInterface $asset); argument
/plugin/c3chart/
H A Daction.php58 private function get_asset($asset) { argument
59 $u = $this->getConf($asset);

1234