Home
last modified time | relevance | path

Searched refs:callback (Results 151 – 175 of 348) sorted by path

12345678910>>...14

/plugin/eventline/timeline_ajax/
H A Dsimile-ajax-bundle.js29 },each:function(callback,args){return jQuery.each(this,callback,args);
114 },map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.cal…
135 }callback.call(obj,elem);
193 ){if(callback.apply(object[i++],args)===false){break;
196 i<length&&callback.call(value,i,value)!==false;
205 }},swap:function(elem,options,callback){var old={}; argument
208 }callback.call(elem);
323 },grep:function(elems,callback,inv){var ret=[]; argument
326 i++){if(!inv!=!callback(elems[i],i)){ret.push(elems[i]);
328 },map:function(elems,callback){var ret=[]; argument
[all …]
/plugin/evesso/
H A DREADME.md36 * `callback` (Callback URL)
/plugin/fastwiki/
H A Dscript.js592 function _action(action, params, callback, insertLoc, extraData) { argument
629 if (callback)
630 callback(data, extraData);
681 * @param {Function} callback - Call this function, with the content HTML as a parameter, when the action is complete.
684 function _sendPartial(params, spinnerParent, callback) { argument
702 callback(data);
728 * @param {Function=} callback - Called after the new page is loaded.
730 function load(page, sectionForm, params, force, callback) { argument
769 if (callback)
770 callback();
[all...]
/plugin/fckg/fckeditor/editor/js/
H A Dfckeditorcode_gecko.js110callback){if (B) return;B=true;var E=FCK.EditorWindow.parent.parent;var F=function (){window.scayt… argument
H A Dfckeditorcode_ie.js111callback){if (B) return;B=true;var E=FCK.EditorWindow.parent.parent;var F=function (){window.scayt… argument
/plugin/fedauth/Auth/OpenID/
H A DAssociation.php268 $callback = $this->_macs[$this->assoc_type];
270 return call_user_func_array($callback, array($this->secret, $kv));
/plugin/filelist/
H A Dsyntax.php698 _sort_filelist(& $files, $callback, $reverse) global() argument
/plugin/findologicxmlexport/vendor/doctrine/annotations/docs/en/
H A Dannotations.rst165 …onRegistry#registerLoader($callable)`` to register an autoloader callback. The callback accepts the
174 A sample loader callback could look like:
/plugin/findologicxmlexport/vendor/hoa/consistency/
H A DXcallable.php182 $callback = $this->_callback;
192 is_array($callback) &&
193 null === $callback[1]) {
225 $callback[1] = $method;
228 return $callback;
/plugin/findologicxmlexport/vendor/hoa/file/
H A DFinder.php510 * @param callable $callback Callback
513 public function filter($callback) argument
515 $this->_filters[] = $callback;
/plugin/findologicxmlexport/vendor/hoa/iterator/
H A DCallbackGenerator.php75 * @param callable $callback Callback.
77 public function __construct(callable $callback) argument
79 $this->_callback = $callback;
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md168 - Remove handler callback [\#615](https://github.com/schmittjoh/serializer/issues/615)
594 - Object handler callback returns array, but serialized object = null [\#594](https://github.com/sc…
1001 - Handler callback's does not get passed context [\#49](https://github.com/schmittjoh/serializer/is…
1002 - PostSerialize callback causes data loss [\#46](https://github.com/schmittjoh/serializer/issues/46)
/plugin/findologicxmlexport/vendor/jms/serializer/doc/
H A Dhandlers.rst9 Handlers are simple callback which receive three arguments: the visitor,
/plugin/findologicxmlexport/vendor/jms/serializer/doc/reference/
H A Dxml_reference.rst50 <callback-method name="foo" type="pre-serialize" />
51 <callback-method name="bar" type="post-serialize" />
52 <callback-method name="baz" type="post-deserialize" />
/plugin/findologicxmlexport/vendor/jms/serializer/src/Builder/
H A DCallbackDriverFactory.php16 private $callback; variable in JMS\\Serializer\\Builder\\CallbackDriverFactory
20 $this->callback = $callable;
25 $driver = \call_user_func($this->callback, $metadataDirs, $reader);
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/
H A DContextTest.php34 …->with($this->anything(), $this->callback(static function (SerializationContext $context) use ($se…
60 …->with($this->anything(), $this->callback(static function (SerializationContext $context) use ($se…
H A DGraphNavigatorTest.php94 ->with($metadata, $this->callback(static function ($navigatorContext) use ($context) {
100 …->with($metadata->propertyMetadata['foo'], $this->callback(static function ($navigatorContext) use…
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/
H A DREADME.md303 $callback = function ($currentValue) {
306 $copier->addFilter(new ReplaceFilter($callback), new PropertyMatcher('MyClass', 'title'));
310 // $copy->title will contain the data returned by the callback, e.g. 'The title (copy)'
321 $callback = function (MyClass $myClass) {
324 $copier->addTypeFilter(new ReplaceFilter($callback), new TypeMatcher('MyClass'));
332 The `$callback` parameter of the `ReplaceFilter` constructor accepts any PHP callable.
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/src/DeepCopy/Filter/
H A DReplaceFilter.php15 protected $callback; variable in DeepCopy\\Filter\\ReplaceFilter
22 $this->callback = $callable;
35 $value = call_user_func($this->callback, $reflectionProperty->getValue($object));
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/
H A DReplaceFilter.php13 protected $callback; variable in DeepCopy\\TypeFilter\\ReplaceFilter
20 $this->callback = $callable;
28 return call_user_func($this->callback, $element);
/plugin/findologicxmlexport/vendor/phpspec/prophecy/
H A DREADME.md163 - `CallbackPromise` or `->will($callback)` - gives you a quick way to define your own custom logic
245 - `CallbackToken` or `Argument::that(callback)` - checks that the argument matches a custom callback
371 - `CallbackPrediction` or `should($callback)` - checks the method against your own custom callback
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/
H A DArgument.php63 * @param callable $callback
67 public static function that($callback) argument
69 return new Token\CallbackToken($callback);
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/
H A DCallbackToken.php23 private $callback; variable in Prophecy\\Argument\\Token\\CallbackToken
28 * @param callable $callback
32 public function __construct($callback) argument
34 if (!is_callable($callback)) {
37 gettype($callback)
41 $this->callback = $callback;
53 return call_user_func($this->callback, $argument) ? 7 : false;
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Prediction/
H A DCallbackPrediction.php27 private $callback; variable in Prophecy\\Prediction\\CallbackPrediction
32 * @param callable $callback Custom callback
36 public function __construct($callback) argument
38 if (!is_callable($callback)) {
41 gettype($callback)
45 $this->callback = $callback;
57 $callback = $this->callback;
59 if ($callback instanceof Closure && method_exists('Closure', 'bind')) {
60 $callback = Closure::bind($callback, $object);
63 call_user_func($callback, $calls, $object, $method);
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Promise/
H A DCallbackPromise.php26 private $callback; variable in Prophecy\\Promise\\CallbackPromise
31 * @param callable $callback Custom callback
35 public function __construct($callback) argument
37 if (!is_callable($callback)) {
40 gettype($callback)
44 $this->callback = $callback;
58 $callback = $this->callback;
60 if ($callback instanceof Closure && method_exists('Closure', 'bind')) {
61 $callback = Closure::bind($callback, $object);
64 return call_user_func($callback, $args, $object, $method);

12345678910>>...14