Home
last modified time | relevance | path

Searched refs:this (Results 4901 – 4925 of 27090) sorted by relevance

1...<<191192193194195196197198199200>>...1084

/plugin/fedauth/Auth/OpenID/
H A DAX.php586 * about the aliases for this request.
756 return $this->data[$type_uri];
799 $this->update_url = $update_url;
870 $ax_args = $this->_newArgs();
884 $update_url = $this->update_url;
961 $ax_args = $this->_newArgs();
996 $this->mode = $this->SUCCESS_MODE;
998 $this->mode = $this->FAILURE_MODE;
1009 return $this->mode == $this->SUCCESS_MODE;
1014 $ax_args = $this->_newArgs();
[all …]
/plugin/nspages/
H A Dsyntax.php28 * need to inherit from this class
32 $this->Lexer->addSpecialPattern('<nspages[^>]*>', $aMode, 'plugin_nspages');
45 $return = $this->_getDefaultOptions();
78 optionParser::checkSimpleStringArgument($match, $return['textPages'], $this, 'textPages');
79 optionParser::checkSimpleStringArgument($match, $return['customTitle'], $this, 'customTitle');
80 optionParser::checkSimpleStringArgument($match, $return['sortByMetadata'], $this, 'sortByMetadata');
81 optionParser::checkSimpleStringArgument($match, $return['textNS'], $this, 'textNS');
82 optionParser::checkDictOrder($match, $return['dictOrder'], $this);
92 optionParser::checkGlobalExclude($this->getConf('global_exclude'), $return['excludedPages'], $return['excludedNS']);
96 optionParser::checkSimpleStringArgument($match, $return['defaultPicture'], $this, 'defaultPictur
[all...]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/_files/
H A DBankAccountTest.php21 $this->ba = new BankAccount;
38 $this->assertEquals(0, $balance);
49 $this->ba->withdrawMoney(1);
51 $this->assertEquals(0, $this->ba->getBalance());
56 $this->fail();
67 $this->ba->depositMoney(-1);
69 $this->assertEquals(0, $this->ba->getBalance());
74 $this->fail();
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/
H A DICSExportPluginTest.php62 $this->assertEquals([
69 $this->assertEquals(1,count($obj->VERSION));
70 $this->assertEquals(1,count($obj->CALSCALE));
71 $this->assertEquals(1,count($obj->PRODID));
74 $this->assertEquals(1,count($obj->VEVENT));
113 $this->assertEquals([
120 $this->assertEquals(1,count($obj->VERSION));
122 $this->assertEquals(1,count($obj->PRODID));
125 $this->assertEquals(1,count($obj->VEVENT));
219 $this->assertEquals(array(
[all …]
/plugin/nftr/
H A Daction.php89 $controller->register_hook('ACTION_HEADERS_SEND', 'BEFORE', $this, 'setNoindex');
97 if ($this->isHidden === null) $this->isHidden();
98 if ($this->isHidden === false) return;
124 $hidePages = explode(' ', $this->getConf('pages'));
125 $hideSpaces = explode(' ', $this->getConf('spaces'));
130 $this->isHidden = true;
137 $this->isHidden = true;
144 $this->isHidden = true;
153 $this->isHidden = true;
159 $this->isHidden = true;
[all …]
/plugin/logger/action/
H A Dlogging.php33 $this->_log();
44 if ($this->getConf('enabled') === 1) {
56 if ($this->getConf('date') === 1) {
61 if ($this->getConf('time') === 1) {
66 if ($this->getConf('ip') === 1) {
71 if ($this->getConf('user') === 1) {
80 if ($this->getConf('host_name') === 1) {
86 if ($this->getConf('query_string') === 1) {
91 if ($this->getConf('user_agent') === 1) {
104 if ($this->getConf('monthly') === 1) {
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/
H A DBlockReferenceExpression.php46 if ($this->getAttribute('is_defined_test')) {
49 if ($this->getAttribute('output')) {
50 $compiler->addDebugInfo($this);
52 $this
63 if (!$this->hasNode('template')) {
68 ->subcompile($this->getNode('template'))
70 ->repr($this->getTemplateName())
72 ->repr($this->getTemplateLine())
78 $this->compileBlockArguments($compiler);
87 ->subcompile($this->getNode('name'))
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Expression/
H A DExpressionEvaluatorTest.php21 $this->evaluator = new ExpressionEvaluator(new ExpressionLanguage());
26 self::assertSame(3, $this->evaluator->evaluate('a + b', ['a' => 1, 'b' => 2]));
31 $parsed = $this->evaluator->parse('a + b', ['a', 'b' ]);
34 $evaluated = $this->evaluator->evaluateParsed($parsed, ['a' => 1, 'b' => 2]);
40 $this->evaluator->setContextVariable('a', 1);
41 $parsed = $this->evaluator->parse('a + b', ['b']);
43 $evaluated = $this->evaluator->evaluateParsed($parsed, ['b' => 2]);
49 $this->evaluator->setContextVariable('a', 1);
50 $parsed = $this->evaluator->parse('a + b', ['b']);
58 $this->evaluator->setContextVariable('a', 1);
[all …]
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/
H A DUglifyCssFilter.php39 $this->uglifycssBin = $uglifycssBin;
40 $this->nodeBin = $nodeBin;
49 $this->expandVars = $expandVars;
58 $this->uglyComments = $uglyComments;
67 $this->cuteComments = $cuteComments;
84 $pb = $this->createProcessBuilder($this->nodeBin
85 ? array($this->nodeBin, $this->uglifycssBin)
86 : array($this->uglifycssBin));
88 if ($this->expandVars) {
92 if ($this->uglyComments) {
[all …]
H A DJpegtranFilter.php43 $this->jpegtranBin = $jpegtranBin;
48 $this->optimize = $optimize;
53 $this->copy = $copy;
58 $this->progressive = $progressive;
63 $this->restart = $restart;
72 $pb = $this->createProcessBuilder(array($this->jpegtranBin));
74 if ($this->optimize) {
78 if ($this->copy) {
79 $pb->add('-copy')->add($this->copy);
82 if ($this->progressive) {
[all …]
/plugin/googleanalytics/
H A Daction.php42 if (!$this->gaEnabled) {
45 $trackingId = $this->getConf('GAID');
46 $gtagId = $this->getConf('GTAGID');
52 if ($this->getConf('dont_count_admin') && $INFO['isadmin']) {
61 if ($this->getConf('track_users') && $_SERVER['REMOTE_USER']) {
64 if ($this->getConf('domainName')) {
65 $options['cookieDomain'] = $this->getConf('domainName');
66 $options['legacyCookieDomain'] = $this->getConf('domainName');
73 'anonymizeIp' => (bool) $this->getConf('anonymize'),
75 'trackOutboundLinks' => (bool) $this->getConf('track_links'),
[all …]
/plugin/ipban/ip-lib/src/Address/
H A DAssignedRange.php42 $this->range = $range;
43 $this->type = $type;
44 $this->exceptions = $exceptions;
54 return $this->range;
64 return $this->type;
74 return $this->exceptions;
87 if ($this->range->contains($address)) {
88 foreach ($this->exceptions as $exception) {
95 $result = $this->type;
124 foreach ($this->exceptions as $exception) {
[all …]
/plugin/diagramsnet/
H A Dsyntax.php30 …$this->fileMatchPattern = '\{\{[^\}]+?' . str_replace('.', '\.', $this->getConf('file_match_suffix…
46 $this->Lexer->addSpecialPattern($this->fileMatchPattern, $mode, 'plugin_diagramsnet');
86 if($this->getConf('app_source_type') == 'external') {
87 $externalUrl = $this->getConf('external_url').$this->getConf('editor_parameters');
89 … $externalUrl = DOKU_URL.'lib/plugins/diagramsnet/lib/'.$this->getConf('editor_parameters');
93 if($this->getConf('app_source_type') == 'external'){
94 … $externalUrl = $this->getConf('external_url').$this->getConf('viewer_parameters');
96 …$externalUrl = DOKU_URL.'lib/plugins/diagramsnet/lib/'.$this->getConf('viewer_parameters'); …
104 $anonymize_xml = $this->getConf('anonymize_xml');
/plugin/gdpr/action/
H A Ddelusers.php45 $cacheFN = $this->getCacheFN('users');
70 if ($this->didMeaningfulWork) {
85 $deletedUserCount = $this->getCleanedUserCount();
87 while ($changelog = $this->getTopChangelog()) {
91 $this->removeTopChangelogFromList();
92 $this->didMeaningfulWork = true;
94 $this->incrementCleanedUserCounter();
95 $this->removeTopUsernameFromList();
116 $cacheFN = $this->getCacheFN('counter');
139 $cacheFN = $this->getCacheFN('counter');
[all …]
/plugin/pdftools/
H A Dadmin.php16 return $this->getLang('admin menu');
40 $this->output = "COMMAND: Install template '$command'";
48 $this->output = "COMMAND: Erase '$command'";
50 $this->rrmdir(DOKU_PLUGIN."dw2pdf/tpl/$command");
115 echo '<h1>'.$this->getLang('admin title main').'</h1>';
120 echo '<h2>'.$this->getLang('admin title upload').'</h2>';
122 echo $this->getLang('text upload');
129 echo '<h2>'.$this->getLang('admin title manage').'</h2>';
162 } else ptln("<td><i>".$this->getLang('text preview')."</i></td>");
166 } else ptln("<td><i>".$this->getLang('text desc')."</i></td>");
[all …]
/plugin/findologicxmlexport/vendor/findologic/libflexport/src/FINDOLOGIC/Export/XML/
H A DPage.php25 $this->start = $start;
26 $this->count = $count;
27 $this->total = $total;
28 $this->items = [];
33 array_push($this->items, $item);
38 $this->items = $items;
46 if (count($this->items) > $this->count) {
55 'start' => $this->start,
56 'count' => $this->count,
57 'total' => $this->total
[all …]
/plugin/quickstats/GEOIP/vendor/geoip2/geoip2/src/Model/
H A DCity.php76 $this->city = new \GeoIp2\Record\City($this->get('city'), $locales);
77 $this->location = new \GeoIp2\Record\Location($this->get('location'));
78 $this->postal = new \GeoIp2\Record\Postal($this->get('postal'));
80 $this->createSubdivisions($raw, $locales);
91 $this->subdivisions,
105 return $this->$attr();
129 return empty($this->subdivisions) ?
130 new \GeoIp2\Record\Subdivision([], $this->locales) :
131 end($this->subdivisions);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dfareporting/
H A DReportCriteria.php43 $this->activities = $activities;
50 return $this->activities;
64 return $this->customRichMediaEvents;
71 $this->dateRange = $dateRange;
78 return $this->dateRange;
85 $this->dimensionFilters = $dimensionFilters;
92 return $this->dimensionFilters;
99 $this->dimensions = $dimensions;
106 return $this->dimensions;
113 $this->metricNames = $metricNames;
[all …]
H A DTechnologyTargeting.php41 $this->browsers = $browsers;
48 return $this->browsers;
55 $this->connectionTypes = $connectionTypes;
62 return $this->connectionTypes;
69 $this->mobileCarriers = $mobileCarriers;
76 return $this->mobileCarriers;
90 return $this->operatingSystemVersions;
97 $this->operatingSystems = $operatingSystems;
104 return $this->operatingSystems;
111 $this->platformTypes = $platformTypes;
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DataLabeling/
H A DGoogleCloudDatalabelingV1beta1LabelImageRequest.php42 $this->basicConfig = $basicConfig;
49 return $this->basicConfig;
56 $this->boundingPolyConfig = $boundingPolyConfig;
63 return $this->boundingPolyConfig;
70 $this->feature = $feature;
77 return $this->feature;
91 return $this->imageClassificationConfig;
98 $this->polylineConfig = $polylineConfig;
105 return $this->polylineConfig;
112 $this->segmentationConfig = $segmentationConfig;
[all …]
H A DGoogleCloudDatalabelingV1beta1LabelVideoRequest.php42 $this->basicConfig = $basicConfig;
49 return $this->basicConfig;
56 $this->eventConfig = $eventConfig;
63 return $this->eventConfig;
70 $this->feature = $feature;
77 return $this->feature;
84 $this->objectDetectionConfig = $objectDetectionConfig;
91 return $this->objectDetectionConfig;
98 $this->objectTrackingConfig = $objectTrackingConfig;
105 return $this->objectTrackingConfig;
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudNaturalLanguage/
H A DAnnotateTextResponse.php43 $this->categories = $categories;
50 return $this->categories;
64 return $this->documentSentiment;
71 $this->entities = $entities;
78 return $this->entities;
85 $this->language = $language;
92 return $this->language;
99 $this->sentences = $sentences;
106 return $this->sentences;
113 $this->tokens = $tokens;
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Firestore/
H A DWrite.php43 $this->currentDocument = $currentDocument;
50 return $this->currentDocument;
57 $this->delete = $delete;
64 return $this->delete;
71 $this->transform = $transform;
78 return $this->transform;
85 $this->update = $update;
92 return $this->update;
99 $this->updateMask = $updateMask;
106 return $this->updateMask;
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/TagManager/
H A DEntity.php49 return $this->changeStatus;
56 $this->client = $client;
63 return $this->client;
70 $this->folder = $folder;
77 return $this->folder;
84 $this->tag = $tag;
91 return $this->tag;
98 $this->trigger = $trigger;
105 return $this->trigger;
112 $this->variable = $variable;
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AdExchangeBuyerII/
H A DServingContext.php42 $this->all = $all;
49 return $this->all;
56 $this->appType = $appType;
63 return $this->appType;
70 $this->auctionType = $auctionType;
77 return $this->auctionType;
84 $this->location = $location;
91 return $this->location;
98 $this->platform = $platform;
105 return $this->platform;
[all …]

1...<<191192193194195196197198199200>>...1084