Home
last modified time | relevance | path

Searched refs:this (Results 9701 – 9725 of 27090) sorted by relevance

1...<<381382383384385386387388389390>>...1084

/plugin/authgooglesheets/vendor/google/apiclient-services/src/PeopleService/
H A DCoverPhoto.php38 $this->default = $default;
45 return $this->default;
52 $this->metadata = $metadata;
59 return $this->metadata;
66 $this->url = $url;
73 return $this->url;
H A DPhoto.php38 $this->default = $default;
45 return $this->default;
52 $this->metadata = $metadata;
59 return $this->metadata;
66 $this->url = $url;
73 return $this->url;
/plugin/davcal/vendor/sabre/http/tests/HTTP/
H A DClientTest.php193 $this->assertTrue($called);
242 $this->assertEquals(3, $called);
243 $this->assertEquals(2, $errorCalled);
244 $this->assertEquals(200, $response->getStatus());
339 $this->assertEquals(200, $response->getStatus());
341 $this->assertEquals('Foo', $response->getBodyAsString());
393 $settings = $settings + $this->persistedSettings;
394 $this->persistedSettings = $settings;
416 $this->emit('doRequest', [$request, &$response]);
438 $this->emit('curlStuff', [&$return]);
[all …]
/plugin/recaptcha2/lib/ReCaptcha/RequestMethod/
H A DSocket.php50 …$this->handle = fsockopen($hostname, $port, $errno, $errstr, (is_null($timeout) ? ini_get("default…
52 if ($this->handle != false && $errno === 0 && $errstr === '') {
53 return $this->handle;
69 return fwrite($this->handle, $string, (is_null($length) ? strlen($string) : $length));
80 return fgets($this->handle, $length);
91 return feof($this->handle);
102 return fclose($this->handle);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Constraint/
H A DStringMatches.php30 $this->pattern = $this->createPatternFromFormat(
34 $this->string = $string;
44 $from = preg_split('(\r\n|\r|\n)', $this->string);
49 $line = $this->createPatternFromFormat($line);
57 $this->string = implode("\n", $from);
62 return $differ->diff($this->string, $other);
/plugin/bureaucracyau/helper/
H A Dfielduser.php19 $this->tpl['class'] .= ' userpicker';
29 $label = $this->opt['label'];
47 $value = $this->opt['value'];
81 return array($this, 'replacementValueCallback');
94 $value = $this->getParam('value');
96 throw new Exception(sprintf($this->getLang('e_user'),hsc($this->getParam('display'))));
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/
H A DAuthor.php45 $this->authorName = $authorName;
46 $this->authorEmail = $authorEmail;
56 return $this->authorName;
66 return $this->authorEmail;
76 … return $this->authorName . (strlen($this->authorEmail) ? ' <' . $this->authorEmail . '>' : '');
/plugin/bureaucracy-au/helper/
H A Dfielduser.php19 $this->tpl['class'] .= ' userpicker';
29 $label = $this->opt['label'];
47 $value = $this->opt['value'];
81 return array($this, 'replacementValueCallback');
94 $value = $this->getParam('value');
96 throw new Exception(sprintf($this->getLang('e_user'),hsc($this->getParam('display'))));
/plugin/timetrack/
H A Dadmin.php26 $this->tmp = $conf['tmpdir'] .'/';
28 $this->tthlp = plugin_load('helper', 'timetrack');
29 …if(!$this->tthlp) msg('Loading the timetrack helper failed. Make sure the timetrack plugin is inst…
41 $data = $this->tthlp->getAll();
44 $fp = fopen($this->tmp.$filename, 'w');
53 sendFile($this->tmp . $filename, 'text/comma-separated-values', true, 0);
63 echo '<h1>' . $this->getLang('timetrack') . '</h1>';
/plugin/fksnewsfeed/inc/ORM/
H A DModelPriority.php26 if ((time() < strtotime($this->priorityFrom)) || (time() > strtotime($this->priorityTo))) {
29 return $this->priorityValue;
33 …$res = $this->sqlite->query('DELETE FROM priority WHERE stream_id=? AND news_id =?', $this->stream…
34 return $this->sqlite->res2arr($res);
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAVACL/
H A DPrincipalCollectionTest.php15 $this->assertTrue($pc instanceof PrincipalCollection);
17 $this->assertEquals('principals',$pc->getName());
30 $this->assertTrue(is_array($children));
33 $this->assertTrue($child instanceof IPrincipal);
56 … $this->assertEquals('principals/user1', $pc->findByUri('mailto:user1.sabredav@sabredav.org'));
57 $this->assertNull($pc->findByUri('mailto:fake.user.sabredav@sabredav.org'));
58 $this->assertNull($pc->findByUri(''));
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/
H A DHasChild.php25 $this->setType($type);
26 $this->setQuery($query);
35 * @return $this
39 return $this->setParam('query', BaseQuery::create($query));
47 * @return $this
51 return $this->setParam('type', $type);
59 * @return $this
63 return $this->setParam('_scope', $scope);
69 * @return $this
73 return $this
[all...]
/plugin/elasticsearch/vendor/react/promise/src/
H A DFulfilledPromise.php18 $this->value = $value;
24 return $this;
28 return resolve($onFulfilled($this->value));
42 $result = $onFulfilled($this->value);
51 return $this;
56 return $this->then(function ($value) use ($onFulfilledOrRejected) {
65 return $this;
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Transitions/
H A DAtomTransition.php19 $this->label = $label;
24 return IntervalSet::fromInt($this->label);
29 return $this->label === $symbol;
39 if ($this === $other) {
44 && $this->label === $other->label
45 && $this->target->equals($other->target);
50 return (string) $this->label;
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Tree/
H A DAbstractParseTreeVisitor.php18 return $tree->accept($this);
33 * the tree structure. Visitors that modify the tree should override this
40 $result = $this->defaultResult();
45 if (!$this->shouldVisitNextChild($node, $result)) {
52 $childResult = $child->accept($this);
54 $result = $this->aggregateResult($result, $childResult);
70 return $this->defaultResult();
83 return $this->defaultResult();
92 * initializes its aggregate result to this value.
119 * this metho
[all...]
/plugin/bureaucracy/helper/
H A Dfielduser.php19 $this->tpl['class'] .= ' userpicker';
29 $label = $this->opt['label'];
47 $value = $this->opt['value'];
81 return array($this, 'replacementValueCallback');
94 $value = $this->getParam('value');
96 throw new Exception(sprintf($this->getLang('e_user'),hsc($this->getParam('display'))));
/plugin/struct/types/
H A DLongText.php29 $R->doc .= hsc($this->config['prefix']) . $valueWithBR . hsc($this->config['postfix']);
31 $R->cdata($this->config['prefix'] . $value . $this->config['postfix']);
63 'class' => 'struct_' . strtolower($this->getClass()),
65 'rows' => $this->config['rows'],
66 'cols' => $this->config['cols']
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ManagedServiceforMicrosoftActiveDirectoryConsumerAPI/Resource/
H A DProjectsLocationsManagedidentitiesGlobalDomains.php60 return $this->call('attachTrust', [$params], Operation::class);
83 return $this->call('create', [$params], Operation::class);
97 return $this->call('delete', [$params], Operation::class);
113 return $this->call('detachTrust', [$params], Operation::class);
127 return $this->call('get', [$params], Domain::class);
156 return $this->call('getIamPolicy', [$params], Policy::class);
199 return $this->call('list', [$params], ListDomainsResponse::class);
219 return $this->call('patch', [$params], Operation::class);
266 return $this->call('restore', [$params], Operation::class);
284 return $this->call('setIamPolicy', [$params], Policy::class);
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/Resource/
H A DNetworkFirewallPolicies.php69 return $this->call('addAssociation', [$params], Operation::class);
101 return $this->call('addRule', [$params], Operation::class);
129 return $this->call('cloneRules', [$params], Operation::class);
154 return $this->call('delete', [$params], Operation::class);
168 return $this->call('get', [$params], FirewallPolicy::class);
204 return $this->call('getIamPolicy', [$params], Policy::class);
248 return $this->call('insert', [$params], Operation::class);
329 return $this->call('patch', [$params], Operation::class);
356 return $this->call('patchRule', [$params], Operation::class);
411 return $this->call('removeRule', [$params], Operation::class);
[all …]
/plugin/redirect/
H A Dadmin.php26 $this->hlp = plugin_load('helper', 'redirect');
47 return $this->getLang('name');
56 if($this->hlp->saveConfigFile($INPUT->post->str('redirdata'))) {
57 msg($this->getLang('saved'), 1);
67 echo $this->locale_xhtml('intro');
72 echo formtext($this->hlp->loadConfigFile());
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/tests/tests/
H A DCloverTest.php24 $this->assertStringMatchesFormatFile(
26 $clover->process($this->getCoverageForBankAccount(), null, 'BankAccount')
34 $this->assertStringMatchesFormatFile(
36 $clover->process($this->getCoverageForFileWithIgnoredLines())
44 $this->assertStringMatchesFormatFile(
46 $clover->process($this->getCoverageForClassWithAnonymousFunction())
/plugin/shorturl/
H A Dadmin.php41 return $this->getLang('name');
49 if(io_saveFile($this->getsavedir().'/shorturl.conf',$_POST['redirdata'])){
50 msg($this->getLang('saved'),1);
60 echo $this->locale_xhtml('intro');
65 echo formtext(io_readFile($this->getsavedir().'/shorturl.conf'));
76 if ( $this->getConf('saveconftocachedir') ) {
/plugin/findologicxmlexport/vendor/jms/serializer/src/Visitor/Factory/
H A DJsonDeserializationVisitorFactory.php27 return new JsonDeserializationVisitor($this->options, $this->depth);
32 $this->options = $options;
33 return $this;
38 $this->depth = $depth;
39 return $this;
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/
H A DMethodNotFoundException.php41 $this->classname = $classname;
42 $this->methodName = $methodName;
43 $this->arguments = $arguments;
48 return $this->classname;
53 return $this->methodName;
58 return $this->arguments;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DataLabeling/
H A DGoogleCloudDatalabelingV1beta1ImageSegmentationAnnotation.php38 $this->annotationColors = $annotationColors;
45 return $this->annotationColors;
52 $this->imageBytes = $imageBytes;
59 return $this->imageBytes;
66 $this->mimeType = $mimeType;
73 return $this->mimeType;

1...<<381382383384385386387388389390>>...1084