Home
last modified time | relevance | path

Searched refs:this (Results 201 – 225 of 15186) sorted by relevance

12345678910>>...608

/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/
H A DServerMKCOLTest.php19 $this->server->exec();
26 $this->assertEquals(201, $this->response->status);
27 $this->assertEquals('', $this->response->body);
28 $this->assertTrue(is_dir($this->tempDir . '/testcol'));
52 $this->assertEquals(415, $this->response->status);
77 $this->assertEquals(400, $this->response->getStatus(), $this->response->getBodyAsString() );
102 $this->assertEquals(400, $this->response->getStatus());
134 …$this->assertEquals(400, $this->response->status, 'Wrong statuscode received. Full response body: …
166 …$this->assertEquals(403, $this->response->status, 'Wrong statuscode received. Full response body: …
198 …$this->assertEquals(201, $this->response->status, 'Wrong statuscode received. Full response body: …
[all …]
/plugin/authgoogle/google/contrib/
H A DGoogle_FreebaseService.php111 $client->addService($this->serviceName, $this->version);
139 $this->id = $id;
142 return $this->id;
231 $this->id = $id;
234 return $this->id;
258 $this->id = $id;
261 return $this->id;
282 $this->id = $id;
285 return $this->id;
323 $this->id = $id;
[all …]
H A DGoogle_ReportsService.php152 $client->addService($this->serviceName, $this->version);
179 return $this->kind;
216 $this->id = $id;
219 return $this->id;
231 return $this->kind;
259 $this->key = $key;
262 return $this->key;
282 return $this->name;
295 return $this->type;
534 $this->key = $key;
[all …]
H A DGoogle_AdsensehostService.php672 $client->addService($this->serviceName, $this->version);
694 $this->id = $id;
697 return $this->id;
759 $this->id = $id;
762 return $this->id;
959 $this->id = $id;
962 return $this->id;
1122 $this->id = $id;
1125 return $this->id;
1184 $this->id = $id;
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dfareporting/
H A DCreativeAsset.php225 $this->active = $active;
232 return $this->active;
344 return $this->bitRate;
561 $this->id = $id;
568 return $this->id;
624 return $this->offset;
757 $this->role = $role;
764 return $this->role;
771 $this->size = $size;
778 return $this->size;
[all …]
H A DCreative.php270 return $this->active;
697 $this->id = $id;
704 return $this->id;
725 $this->kind = $kind;
732 return $this->kind;
795 $this->name = $name;
802 return $this->name;
921 $this->size = $size;
928 return $this->size;
1117 $this->type = $type;
[all …]
/plugin/quickstats/
H A Dadmin.php35 $this->helper = $this->loadHelper('quickstats', true);
36 $this->cache = $this->helper->getCache();
37 $this->cc_arrays = $this->helper->get_cc_arrays();
38 $this->meta_path = $this->helper->metaFilePath(true) ;
40 if(!$this->page_totals) $this->page_totals = array();
50 $this->script_max_time = $this->getConf('max_exec_time') ? $this->getConf('max_exec_time') : 60;
88 $this->user_agents = array_unique($this->user_agents);
162 $this->to_confirm = implode(',',array_keys($this->deletions));
195 if(isset($this->deletions) || isset($this->to_confirm)) {
311 if($this->deletions && count($this->deletions)) {
[all …]
/plugin/structgantt/meta/
H A DGantt.php60 if ($this->mode !== 'xhtml') {
65 $this->skipWeekends = $conf['skipweekends'] ?? false;
66 $this->initColumnRefs();
67 if ($this->resultCount) {
68 $this->initMinMax();
83 foreach ($this->columns as $column) {
88 if ($this->colrefStart == -1) {
89 $this->colrefStart = $ref;
91 $this->colrefEnd = $ref;
94 $this
[all...]
/plugin/refnotes/
H A Dbibtex.php30 $this->handler = new refnotes_bibtex_handler();
31 $this->lexer = new refnotes_bibtex_lexer($this->handler, 'base', true);
33 $this->addBibtexMode(new refnotes_bibtex_outside_mode());
34 $this->addBibtexMode(new refnotes_bibtex_entry_mode('parented'));
35 $this->addBibtexMode(new refnotes_bibtex_entry_mode('braced'));
36 $this->addBibtexMode(new refnotes_bibtex_field_mode());
37 $this->addBibtexMode(new refnotes_bibtex_integer_value_mode());
38 $this->addBibtexMode(new refnotes_bibtex_string_value_mode('quoted'));
39 $this
[all...]
H A Dnote.php21 $this->note = new ArrayObject($note);
22 $this->limit = $this->getBlockLimit($limit);
23 $this->count = 0;
25 parent::__construct($this->note->getIterator());
32 $result = $this->current()->isValid();
35 ++$this->count;
45 return parent::valid() && (($this->limit == 0) || ($this->count <= $this
[all...]
/plugin/phpipam/
H A Dphpipam-api.php291 $this->array_to_xml($xml, $this->result);
318 $this->array_to_xml($xml, $this->result);
654 $url = $this->api_url.$this->api_app_id."/";
657 …$url = $this->api_url.$this->api_app_id.str_replace("//", "/", "/".$this->api_server_controller."/…
698 …url_setopt($this->Connection, CURLOPT_URL, $this->api_url.$this->api_app_id.str_replace("//", "/",…
752 if (strlen($this->token)<2 && $this->token_expires < time()) {
772 $this->curl_add_http_header ("token", $this->token);
848 $this->exception("Curl error: ".curl_error($this->Connection));
864 $this->response_headers = curl_getinfo($this->Connection);
880 CURLOPT_URL => $this->api_url.$this->api_app_id."/user/",
[all …]
/plugin/filelist/_test/
H A Dfilelist.test.php
/plugin/upgrade/HTTP/
H A DHTTPClient.php30 public $header_regexp; // if set this RE must match against the headers, else abort
69 $this->agent = 'Mozilla/4.0 (compatible; DokuWiki HTTP Client; '.PHP_OS.')';
70 $this->timeout = 15;
71 $this->cookies = array();
72 $this->referer = '';
73 $this->max_redirect = 3;
74 $this->redirect_count = 0;
75 $this->status = 0;
76 $this->headers = array();
77 $this
[all...]
/plugin/odt/ODT/css/
H A Dcssdocument.php29 return $this->doc->entries [$this->index]['element'];
49 $index = $this->doc->findParent($this->index);
226 $this->rootIndex = $this->getIndexLastOpened ();
227 $this->rootLevel = $this->level-1;
237 $this->size = $this->rootIndex + 1;
238 $this->level = $this->rootLevel + 1;
274 $this->entries [$this->size]['level'] = $this->level;
275 $this->entries [$this->size]['state'] = 'open';
302 $this->entries [$this->size]['level'] = $this->level;
303 $this->entries [$this->size]['state'] = 'close';
[all …]
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DSocketHandler.php130 return $this;
143 return $this;
156 return $this;
169 return $this;
179 return $this;
250 …return @pfsockopen($this->connectionString, -1, $this->errno, $this->errstr, $this->connectionTime…
260 …return @fsockopen($this->connectionString, -1, $this->errno, $this->errstr, $this->connectionTimeo…
299 return stream_set_chunk_size($this->resource, $this->chunkSize);
342 $this->connect();
376 …w new \UnexpectedValueException("Failed connecting to $this->connectionString ($this->errno: $this
[all …]
/plugin/zip/pear/File/Archive/Reader/
H A DUncompress.php113 count($this->readers) >= $this->uncompressionLevel
140 $this->readers[count($this->readers)] =& $this->source;
160 $selection = substr($this->baseDir, 0, $this->baseDirProgression);
175 $this->source =& $this->readers[count($this->readers)-1];
176 unset($this->readers[count($this->readers)-1]);
188 $this->baseDirProgression = strlen($this->baseDir);
191 $this->baseDirProgression = strlen($this->baseDir);
197 $this->baseDirProgression = strlen($this->baseDir);
246 $res = $this->next();
275 unset($this->source);
[all …]
/plugin/sectiontoggle/
H A DMobile_Detect.php154 // Seen this on HTC Sensation. SensationXE_Beats_Z715e.
156 // Seen this on a HTC.
673 * Construct an instance of this class.
684 $this->setHttpHeaders($headers);
685 $this->setUserAgent($userAgent);
715 $this->httpHeaders = array();
721 $this->httpHeaders[$key] = $value;
726 $this->setCfHeaders($httpHeaders);
736 return $this->httpHeaders;
761 if (isset($this
[all...]
/plugin/findologicxmlexport/vendor/symfony/yaml/
H A DParser.php85 $this->refs = [];
130 $this->totalNumberOfLines = \count($this->lines);
148 …if (null !== ($tag = $this->getLineTag($this->currentLine, $flags, false)) && !$this->moveToNextLi…
183 …$data[] = $this->parseBlock($this->getRealCurrentLineNb() + 1, $this->getNextEmbedBlock(null, true…
187 … $this->parseBlock($this->getRealCurrentLineNb() + 1, $this->getNextEmbedBlock(null, true), $flags)
323 … $value = $this->parseBlock($this->getRealCurrentLineNb() + 1, $this->getNextEmbedBlock(), $flags);
476 $realCurrentLineNumber = $this->currentLineNb + $this->offset;
606 if ($this->currentLineNb >= \count($this->lines) - 1) {
610 $this->currentLine = $this->lines[++$this->currentLineNb];
626 $this->currentLine = $this->lines[--$this->currentLineNb];
[all …]
/plugin/columns/
H A Daction.php30 $this->reset();
72 $this->currentBlock = $this->block[0];
118 $this->currentBlock = new columns_block(count($this->block), $this->currentBlock);
121 $this->block[] = $this->currentBlock;
132 $this->currentBlock = $this->currentBlock->getParent();
155 return $this;
233 $this->id = $id;
255 $this->column[] = $this->currentColumn;
312 $this->column[$c]->addAttribute('block-id', $this->id);
511 $this->attribute = array_merge($this->attribute, $attribute);
[all …]
/plugin/swiftmail/Swift/Message/
H A DMime.php144 $this->LE = $le;
162 return $this->LE;
291 $this->cache->write("append", $this->LE . "--" . $this->boundary . $this->LE);
295 $this->cache->write("append", $this->LE . "--" . $this->boundary . "--" . $this->LE);
345 $this->cache->write("body", $this->getData());
351 … $os = Swift_Message_Encoder::instance()->encode7BitFile($this->getData(), $this->wrap, $this->LE);
357 …$this->cache->write("body", Swift_Message_Encoder::instance()->encode7Bit($this->getData(), $this-…
363 … $os = Swift_Message_Encoder::instance()->encode8BitFile($this->getData(), $this->wrap, $this->LE);
369 …$this->cache->write("body", Swift_Message_Encoder::instance()->encode8Bit($this->getData(), $this-…
487 $this->cache->write("headers", $this->headers->build());
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Node/
H A DFile.php166 return $this->testData;
176 return $this->classes;
186 return $this->traits;
196 return $this->functions;
284 return $this->numTraits;
598 $this->startLines[$class['startLine']] = &$this->classes[$className];
599 $this->endLines[$class['endLine']] = &$this->classes[$className];
634 $this->startLines[$trait['startLine']] = &$this->traits[$traitName];
635 $this->endLines[$trait['endLine']] = &$this->traits[$traitName];
669 $this->startLines[$function['startLine']] = &$this->functions[$functionName];
[all …]
/plugin/dokusioc/lib/
H A Dsioc_dokuwiki.php35 $this->id = $id;
36 $this->url = $url;
111 $rdf = '<' . $this->type . " rdf:about=\"" . clean($this->url, true) . "\">\n";
130 if (isset($this->contributors[$this->creator['sioc:modifier']])) {
195 if (is_array($this->links) && count($this->links) > 0) {
324 $this->id = $id;
328 $this->url = $url;
344 if ($this->nick) {
353 if ($this->role) {
362 if ($this->name) {
[all …]
/plugin/authdrupal7/
H A Dauth.php42 if(!$this->getConf('server') || !$this->getConf('user') || !$this->getConf('database')) {
63 $this->success = true;
211 if($this->dbcon) {
309 if(!$this->dbcon) {
310 …$con = @mysql_connect($this->getConf('server'), $this->getConf('user'), $this->getConf('password')…
344 if($this->dbcon) {
367 if($this->dbcon) {
390 if($this->dbcon) {
430 if($this->dbcon) {
461 if($this->dbcon) {
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/IdentityToolkit/
H A DVerifyAssertionResponse.php185 $this->action = $action;
192 return $this->action;
220 return $this->appScheme;
234 return $this->context;
269 $this->email = $email;
276 return $this->email;
374 return $this->fullName;
388 return $this->idToken;
423 $this->kind = $kind;
430 return $this->kind;
[all …]
/plugin/virtualgroup/
H A Dadmin.php19 $this->virtualGroups = new VirtualGroups();
31 $this->addUserGroups($INPUT->str('user'), $INPUT->str('groups'));
33 $this->addGroupUsers($INPUT->str('group'), $INPUT->str('users'));
35 $this->deleteUser($INPUT->str('user'));
37 $this->deleteGroup($INPUT->str('group'));
39 $this->editUserGroups($INPUT->str('user'), $INPUT->str('groups'));
41 $this->editGroupUsers($INPUT->str('group'), $INPUT->str('users'));
55 $this->virtualGroups->getUserGroups($auth->cleanUser($INPUT->str('loaduser')))
64 $this->virtualGroups->getGroupUsers($auth->cleanGroup($INPUT->str('loadgroup')))
88 $this
[all...]

12345678910>>...608