Home
last modified time | relevance | path

Searched refs:helpers (Results 1 – 25 of 137) sorted by relevance

123456

/plugin/jplayer/vendor/mustache/mustache/src/Mustache/
DHelperCollection.php17 private $helpers = array(); variable in Mustache_HelperCollection
26 * @param array|Traversable $helpers (default: null)
28 public function __construct($helpers = null) argument
30 if ($helpers === null) {
34 if (!is_array($helpers) && !$helpers instanceof Traversable) {
38 foreach ($helpers as $name => $helper) {
64 $this->helpers[$name] = $helper;
96 return $this->helpers[$name];
122 return array_key_exists($name, $this->helpers);
150 unset($this->helpers[$name]);
[all …]
DEngine.php50 private $helpers; variable in Mustache_Engine
362 * @param array|Traversable $helpers
364 public function setHelpers($helpers) argument
366 if (!is_array($helpers) && !$helpers instanceof Traversable) {
372 foreach ($helpers as $name => $helper) {
386 if (!isset($this->helpers)) {
387 $this->helpers = new Mustache_HelperCollection();
390 return $this->helpers;
DTemplate.php148 $helpers = $this->mustache->getHelpers();
149 if (!$helpers->isEmpty()) {
150 $stack->push($helpers);
/plugin/authorstats/
Daction.php20 var $helpers = null; variable in action_plugin_authorstats
24 $this->helpers = $this->loadHelper("authorstats", true);
25 if (!$this->helpers->statsFileExists())
51 $usd = $this->helpers->readUserJSON($name);
96 $this->helpers->createDirIfMissing("data");
99 array_map("unlink", glob($this->helpers->basedir . "/*.json"));
121 $sd = $this->helpers->readJSON();
143 if (@filemtime($cache->cache) < @filemtime($this->helpers->summaryfile)) {
153 $files = $this->helpers->rglob($dir . "[^_]*.changes", GLOB_NOSORT);
218 $usd = $this->helpers->readUserJSON($r["author"]);
[all …]
/plugin/asciidocjs/node_modules/clean-css/lib/writer/
Done-time.js1 var helpers = require('./helpers'); variable
18 helpers.all(oneTimeContext, tokens);
24 helpers.body(oneTimeContext, tokens);
30 helpers.property(oneTimeContext, tokens, position, true);
36 helpers.rules(oneTimeContext, tokens);
42 helpers.value(oneTimeContext, tokens);
/plugin/asciidocjs/node_modules/handlebars/lib/handlebars/
Dbase.js25 export function HandlebarsEnvironment(helpers, partials, decorators) { argument
26 this.helpers = helpers || {};
45 extend(this.helpers, name);
47 this.helpers[name] = fn;
51 delete this.helpers[name];
Dhelpers.js20 if (instance.helpers[helperName]) {
21 instance.hooks[helperName] = instance.helpers[helperName];
23 delete instance.helpers[helperName];
/plugin/diagramsnet/lib/WEB-INF/lib/
Dslf4j-api-1.7.25.jar ... org/slf4j/event/ org/slf4j/helpers/ org/slf4j/spi/ org/slf4j ...
/plugin/asciidocjs/node_modules/handlebars/dist/cjs/handlebars/
Dbase.js46 function HandlebarsEnvironment(helpers, partials, decorators) { argument
47 this.helpers = helpers || {};
66 _utils.extend(this.helpers, name);
68 this.helpers[name] = fn;
72 delete this.helpers[name];
Dhelpers.js49 if (instance.helpers[helperName]) {
50 instance.hooks[helperName] = instance.helpers[helperName];
52 delete instance.helpers[helperName];
/plugin/asciidocjs/node_modules/handlebars/dist/amd/handlebars/
Dbase.js35 function HandlebarsEnvironment(helpers, partials, decorators) { argument
36 this.helpers = helpers || {};
55 _utils.extend(this.helpers, name);
57 this.helpers[name] = fn;
61 delete this.helpers[name];
Dhelpers.js36 if (instance.helpers[helperName]) {
37 instance.hooks[helperName] = instance.helpers[helperName];
39 delete instance.helpers[helperName];
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DHelpers.php33 protected $helpers = []; variable in Handlebars\\Helpers
59 * @param array $helpers array of name=>$value helpers
63 public function __construct($helpers = null) argument
70 if ($helpers != null) {
71 if (!is_array($helpers) && !$helpers instanceof Traversable) {
76 foreach ($helpers as $name => $helper) {
96 $this->helpers[$name] = $helper;
108 return array_key_exists($name, $this->helpers);
124 return $this->helpers[$name];
162 unset($this->helpers[$name]);
[all …]
H A DHandlebars.php59 private $helpers; variable in Handlebars\\Handlebars
191 * @param Helpers $helpers handlebars helper
195 public function setHelpers(Helpers $helpers) argument
197 $this->helpers = $helpers;
207 if (!isset($this->helpers)) {
208 $this->helpers = new Helpers();
210 return $this->helpers;
/plugin/asciidocjs/node_modules/lodash/fp/
D_baseConvert.js166 var helpers = isLib ? func : {
183 var ary = helpers.ary,
184 assign = helpers.assign,
185 clone = helpers.clone,
186 curry = helpers.curry,
187 each = helpers.forEach,
188 isArray = helpers.isArray,
189 isError = helpers.isError,
190 isFunction = helpers.isFunction,
191 isWeakMap = helpers.isWeakMap,
[all …]
/plugin/sequencediagram/bower_components/lodash/fp/
D_baseConvert.js166 var helpers = isLib ? func : {
183 var ary = helpers.ary,
184 assign = helpers.assign,
185 clone = helpers.clone,
186 curry = helpers.curry,
187 each = helpers.forEach,
188 isArray = helpers.isArray,
189 isError = helpers.isError,
190 isFunction = helpers.isFunction,
191 isWeakMap = helpers.isWeakMap,
[all …]
/plugin/sequencediagram/bower_components/lodash/dist/
Dlodash.fp.js246 var helpers = isLib ? func : {
263 var ary = helpers.ary,
264 assign = helpers.assign,
265 clone = helpers.clone,
266 curry = helpers.curry,
267 each = helpers.forEach,
268 isArray = helpers.isArray,
269 isError = helpers.isError,
270 isFunction = helpers.isFunction,
271 isWeakMap = helpers.isWeakMap,
[all …]
/plugin/asciidocjs/node_modules/jake/test/integration/
Dhelpers.js3 var helpers = new (function () {
37 var out = helpers.trim(stdout);
62 str = helpers.trim(str);
80 module.exports = helpers;
/plugin/combo/vendor/salesforce/handlebars-php/tests/Handlebars/
H A DHandlebarsTest.php80 $helpers = new \Handlebars\Helpers();
81 $engine = new \Handlebars\Handlebars(array('loader' => $loader, 'helpers' => $helpers));
227 $helpers = new \Handlebars\Helpers();
230 'helpers' => $helpers,
402 $helpers = new \Handlebars\Helpers(array('test' => function () {
404 $engine = new \Handlebars\Handlebars(array('helpers' => $helpers));
/plugin/asciidocjs/node_modules/handlebars/
DREADME.markdown65 - [Helpers](https://handlebarsjs.com/guide/expressions.html#helpers)
66 - [Block Expressions](https://handlebarsjs.com/guide/block-helpers.html#basic-blocks)
70helpers are explicit pieces of code that are free to implement whatever behavior they like. The [m…
76 …orted. Instead Handlebars provides its own lambda resolution that follows the behaviors of helpers.
134 * [handlebars-helpers](https://github.com/assemble/handlebars-helpers) is an extensive library
135 with 100+ handlebars helpers.
136 * [handlebars-layouts](https://github.com/shannonmoeller/handlebars-layouts) is a set of helpers wh…
153 …swag) by [@elving](https://github.com/elving) is a growing collection of helpers for handlebars.js…
155 ….com/nknapp/promised-handlebars) is a wrapper for Handlebars that allows helpers to return Promise…
156 …dlebars-helpers](https://github.com/leapfrogtechnology/just-handlebars-helpers) A fully tested lig…
/plugin/supa/lib/
DSupa.jar.unsigned ... ) } de/christophlinder/supa/encodings/helpers/ de/christophlinder/supa/encodings/helpers ...
DSupa.jar ... ) } de/christophlinder/supa/encodings/helpers/ de/christophlinder/supa/encodings/helpers ...
/plugin/asciidocjs/node_modules/handlebars/lib/handlebars/compiler/
Dast.js3 helpers: { property
24 path.parts.length === 1 && !AST.helpers.scopedId(path) && !path.depth
/plugin/asciidocjs/node_modules/handlebars/dist/cjs/handlebars/compiler/
Dast.js6 helpers: { property
22 return path.parts.length === 1 && !AST.helpers.scopedId(path) && !path.depth;
/plugin/asciidocjs/node_modules/handlebars/dist/amd/handlebars/compiler/
Dast.js6 helpers: { property
22 return path.parts.length === 1 && !AST.helpers.scopedId(path) && !path.depth;

123456