Home
last modified time | relevance | path

Searched refs:this (Results 3576 – 3600 of 27090) sorted by relevance

1...<<141142143144145146147148149150>>...1084

/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DGeoRSS.php18 * file that was distributed with this source code.
45 return $this->geomFromText($georss);
58 $this->namespace = $namespace;
59 $this->nss = $namespace . ':';
61 return $this->geometryToGeoRSS($geometry) ?: '';
77 $this->xmlObject = $xmlObject;
79 $geom = $this->geomFromXML();
90 $geometries = array_merge($geometries, $this->parsePoints());
91 $geometries = array_merge($geometries, $this->parseLines());
92 $geometries = array_merge($geometries, $this
[all...]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/_files/
H A DFailureTest.php6 $this->assertEquals([1], [2], 'message');
11 $this->assertEquals(1, 2, 'message');
22 $this->assertEquals($a, $b, 'message');
27 $this->assertEquals(null, 'bar', 'message');
32 $this->assertEquals('foo', 'bar', 'message');
42 $this->assertStringMatchesFormat('*%s*', '**', 'message');
47 $this->assertEquals(1, 2, 'message');
52 $this->assertSame('foo', 'bar', 'message');
57 $this->assertSame(new StdClass, new StdClass, 'message');
62 $this->assertSame(new StdClass, null, 'message');
[all …]
/plugin/math/
H A Dsyntax.php104 $this->msg_disable = $this->getLang($this->prefix.'disable');
105 $this->enable = $this->_requirements_ok();
117 …'name' => 'MathMulti Plugin'.(!$this->enable ? ' ('.$this->getLang($this->prefix.'disable').')' …
118 'desc' => $this->getLang($this->prefix.'info').
119 (!$this->enable ? "\n(".$this->getLang($this->prefix.'disable').")" : ''),
/plugin/findologicxmlexport/vendor/jms/metadata/src/
H A DMethodMetadata.php34 $this->class = $class;
35 $this->name = $name;
37 $this->reflection = new \ReflectionMethod($class, $name);
38 $this->reflection->setAccessible(true);
48 return $this->reflection->invokeArgs($obj, $args);
60 return serialize([$this->class, $this->name]);
73 list($this->class, $this->name) = unserialize($str);
75 $this->reflection = new \ReflectionMethod($this->class, $this->name);
76 $this->reflection->setAccessible(true);
/plugin/combo/ComboStrap/Xml/
H A DXmlDocument.php7 * COPYING file in the root directory of this source tree.
88 if (!$this->isXmlExtensionLoaded()) {
100 | LIBXML_NSCLEAN // Remove redundant namespace declarations - for whatever reason, the formatting does not work if this is set
106 // Options that cause the process to hang if this is not for a html file
126 $this->domDocument = new DOMDocument('1.0', 'UTF-8');
128 $this->mandatoryFormatConfigBeforeLoading();
131 $text = $this->processTextBeforeLoading($text);
145 $result = $this->domDocument->loadXML($text, $options);
151 * While malformed HTML should load successfully, this function may generate E_WARNING errors
152 * @deprecated as we try to be XHTML compliantXML but yeah this i
[all...]
/plugin/findologicxmlexport/vendor/hoa/consistency/Test/Unit/
H A DXcallable.php54 $this
72 $this
90 $this
108 $this
130 $this
152 $this
175 $this
193 $this
215 $this
224 $this
[all …]
/plugin/labeled/
H A Dhelper.php96 $db = $this->getDb();
107 $db = $this->getDb();
120 $db = $this->getDb();
134 $db = $this->getDb();
162 $db = $this->getDb();
178 $db = $this->getDb();
204 if ($this->labels !== null && !$reload) return $this->labels;
206 $db = $this->getDb();
216 return $this->labels;
229 $db = $this->getDb();
[all …]
/plugin/fckg/action/
H A Dedit.php39 $this->setupLocale();
163 $this->_print();
357 $this->xhtml = $this->_render_xhtml($text);
359 $this->xhtml = str_replace("__IWIKI_FSLASH__", "&frasl;", $this->xhtml);
361 $this->xhtml = preg_replace("/FNoteINSert\d+/ms", "",$this->xhtml);
364 $this->xhtml = str_replace("__GESHI_QUOT__", '&#34;', $this->xhtml);
365 $this->xhtml = str_replace("__GESHI_OPEN__", "&#60; ", $this->xhtml);
366 $this->xhtml = str_replace('CHEVRONescC', '>>',$this->xhtml);
367 $this->xhtml = str_replace('CHEVRONescO', '<<',$this->xhtml);
368 $this->xhtml = preg_replace('/_dwQUOT_/ms','>',$this->xhtml); // dw quotes
[all …]
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.audio-video.matroska.php254 $this->parseEBML($info);
368 …$getid3_temp->openfile($this->getid3->filename, $this->getid3->info['filesize'], $this->getid3->fp…
1285 …if (($this->current_offset - $this->EBMLbuffer_offset) >= ($this->EBMLbuffer_length - $min_data)) {
1289 $this->fseek($this->current_offset);
1290 $this->EBMLbuffer_offset = $this->current_offset;
1291 $this->EBMLbuffer = $this->fread($read_bytes);
1292 $this->EBMLbuffer_length = strlen($this->EBMLbuffer);
1298 if ($this->EBMLbuffer_length == 0 && $this->feof()) {
1299 return $this->error('EBML parser: ran out of file at offset '.$this->current_offset);
1309 $actual_offset = $this->current_offset - $this->EBMLbuffer_offset;
[all …]
/plugin/simplemysqlclient/syntax/
H A Dsimplemysqlclient.php86 if (! $this->isAuthorized ()) {
91 $button = $this->getLang ( 'submit_button' );
101 $shortcuts = $this->getShortCuts ();
102 $templates = $this->getTemplates ();
148 $db = $this->connectToDb ();
160 $rows = $this->fetch_all( $result);
174 …echo $this->getLang ( 'queryexecuted' ) . ($err != 0 ? $this->getLang ( 'no' ) : $this->getLang ( …
305 $width = intval ( $this->options ['width'] ) ? ' width="' . $this->options ['width'] . '"' : '';
493 …return "<a href=\"$url\" title=\"" . $this->getLang ( 'filedlhint' ) . '">' . $this->getLang ( 'cm…
601 $userName = $this->getConf ( 'userName' );
[all …]
/plugin/latex/
H A Dadmin.php115 $this->output .= '<div class="info">'.$this->getLang('refresh_note').'</div>';
132 …$this->output = "<div class=\"error\">Purger: Bad form inputs. No action taken.</div>".$this->outp…
138 $this->output .= "</pre>";
148 ptln('<p>'.$this->output.'</p>');
161 echo $this->getLang('label_olderthan');
163 echo $this->getLang('label_days');
194 foreach(array($this->getConf("latex_path"),$this->getConf("dvips_path"),
195 $this->getConf("convert_path"),$this->getConf("identify_path")) as $path) {
242 $this->doc = '';
243 $plug->render('xhtml', $this, $data);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DPHP64.php60 $val = $this->value;
61 $this->value = [];
62 $vals = &$this->value;
121 $temp = self::addHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
134 $temp = self::subtractHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
147 $temp = self::multiplyHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
165 return $this->divideHelper($y);
259 return parent::compareHelper($this->value, $this->is_negative, $y->value, $y->is_negative);
272 return $this->value === $x->value && $this->is_negative == $x->is_negative;
341 return $this->powHelper($n);
[all …]
/plugin/openlayersmap/syntax/
H A Dolmap.php6 * Permission to use, copy, modify, and distribute this software for any
8 * copyright notice and this permission notice appear in all copies.
70 $this->Lexer->addSpecialPattern(
97 $mainLat = $this->dflt ['lat'];
100 $mainLon = $this->dflt ['lon'];
103 $gmap = $this->extractParams($str_params);
104 $overlay = $this->extractPoints($str_points);
112 $imgUrl .= $this->getGoogle($gmap, $overlay);
116 if (!$this->getConf('bingAPIKey')) {
118 $_firstimageID = $this
[all...]
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
H A DLineFormatter.php54 $this->includeStacktraces = $include;
55 if ($this->includeStacktraces) {
59 return $this;
66 return $this;
73 return $this;
83 $output = $this->format;
144 return $this->replaceNewlines($this->convertToString($value));
149 $str = $this->formatException($e);
173 return $this->toJson($data, true);
178 if ($this->allowInlineLineBreaks) {
[all …]
/plugin/davcal/vendor/sabre/event/tests/
H A DEventEmitterTest.php41 $this->assertTrue(
69 $this->assertFalse(
98 $this->assertFalse(
155 $this->assertTrue($result);
158 $this->assertTrue(
182 $this->assertTrue($result);
188 $this->assertTrue($result);
207 $this->assertTrue($result);
210 $this->assertTrue(
213 $this->assertFalse(
[all …]
/plugin/sectiontoggle/
H A Daction.php15 $controller->register_hook('DOKUWIKI_STARTED', 'AFTER', $this, '_jsinfo');
16 $controller->register_hook('MENU_ITEMS_ASSEMBLY', 'AFTER', $this, 'add_button_toggle', array());
29 $NS_inc = implode("|",$this->normalize_names($this->getConf('incl_ns'),true));
36 $id_inc = implode("|",$this->normalize_names($this->getConf('incl_pg')));
37 $JSINFO['toc_xcl'] = $this->getConf('toc_toggle'); /* Determines whether or not to apply jQuery toc code to current page*/
44 $NS = implode("|",$this->normalize_names($this->getConf('xcl_ns'),true));
51 $id = implode("|",$this
[all...]
/plugin/lms/_test/
H A DHelperTest.php27 $this->assertEquals(
34 $this->assertEquals(
41 $this->assertEquals(
48 $this->assertEquals(
58 $this->setIdGlobals($id);
60 $this->assertEquals(false, $result, '$id is not a lesson');
63 $this->setIdGlobals($id);
65 $this->assertEquals(false, $result, '$id is last lesson');
67 $id = 'this';
68 $this
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/src/Bulk/Action/
H A DAbstractDocument.php22 $this->setData($document);
26 * @return $this
30 $this->_data = $document;
32 $metadata = $this->_getMetadata($document);
34 $this->setMetadata($metadata);
36 return $this;
40 * @return $this
44 if (!$this instanceof UpdateDocument) {
48 $this->_data = $script;
50 $metadata = $this
[all...]
/plugin/publish/action/
H A Dapprove.php13 $this->helper = plugin_load('helper', 'publish');
32 $pages = $this->helper->getPagesFromNamespace($namespace);
40 if (!$this->helper->canApprove()) {
43 $this->addApproval();
64 if (!$this->helper->canApprove()) {
69 $this->addApproval();
83 $approvalRevision = $this->helper->getRevision();
84 $approvals = $this->helper->getApprovals();
99 msg($this->getLang('version approved'), 1);
106 …if ($this->getConf('send_mail_on_approve') && $this->helper->isRevisionApproved($approvalRevision)…
[all …]
/plugin/combo/vendor/php-webdriver/webdriver/lib/
H A DWebDriverOptions.php26 $this->executor = $executor;
27 $this->isW3cCompliant = $isW3cCompliant;
46 $this->executor->execute(
51 return $this;
61 $this->executor->execute(DriverCommand::DELETE_ALL_COOKIES);
63 return $this;
74 $this->executor->execute(
79 return $this;
91 if ($this->isW3cCompliant) {
92 $cookieArray = $this
[all...]
/plugin/htmlok/
H A DBaseSyntaxPlugin.php32 return $this->type;
37 return $this->ptype;
42 return $this->sort;
47 $this->Lexer->addEntryPattern("<{$this->tag}>(?=.*?</{$this->tag}>)", $mode, $this->mode);
52 $this->Lexer->addExitPattern("</{$this->tag}>", $this->mode);
78 if ($this->ptype === 'block') {
86 if ($this->ptype === 'block') {
108 if ($this->getConf('phpok')) {
129 return $this->php($text, 'pre');
143 if ($this->getConf('htmlok')) {
[all …]
/plugin/twcheckliste/
H A Dadmin.php36 $this-> document_root = pathinfo($_SERVER['SCRIPT_FILENAME']);
37 $this-> document_root = $this-> document_root['dirname'];
46 $filename = $this-> document_root . '/lib/plugins/twcheckliste/config.php';
65 $this-> document_root = pathinfo($_SERVER['SCRIPT_FILENAME']);
66 $this-> document_root = $this-> document_root['dirname'];
68 require_once $this-> document_root . '/lib/plugins/twcheckliste/config.php';
78 <h1>' . $this -> getLang('menu') . '</h1>
85 ' . $this -> getLang('label_config') . '
87 <label class="block"><span>' . $this -> getLang('label_logo') . '</span>
91 <label class="block"><span>' . $this -> getLang('label_farbcode') . '</span>
[all …]
/plugin/dokutexit/
H A Drenderer.php58 $this->id = $ID;
59 if (!isset($this->_texit)) {
60 if (!$this->configloaded) {
61 $this->loadConfig();
63 $this->_texit = new texitrender_plugin_texit($this->id);
68 $this->_texit->add_data('info',
75 if ($this->_texit->generate('pdf')) {
79 if (is_readable($this->_texit->zip['file'])) {
80 $filename = $this->_texit->zip['file'];
86 if (is_readable($this->_texit->pdf['file'])) {
[all …]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/
H A DChanges.php9 * file that was distributed with this source code.
39 $this->changes = $changes;
46 * @return $this
51 $this->changes[] = $change;
54 return $this;
65 return array_search($change, $this->changes, true) !== false;
72 * @return $this
77 if (($index = array_search($change, $this->changes, true)) !== false) {
78 unset($this->changes[$index]);
82 return $this;
[all...]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dfareporting/
H A DCreativeField.php54 $this->accountId = $accountId;
61 return $this->accountId;
68 $this->advertiserId = $advertiserId;
75 return $this->advertiserId;
96 $this->id = $id;
103 return $this->id;
110 $this->kind = $kind;
117 return $this->kind;
124 $this->name = $name;
131 return $this->name;
[all …]

1...<<141142143144145146147148149150>>...1084