Home
last modified time | relevance | path

Searched refs:this (Results 4251 – 4275 of 27090) sorted by relevance

1...<<171172173174175176177178179180>>...1084

/plugin/dw2pdf/vendor/mpdf/mpdf/src/Writer/
H A DColorWriter.php25 $this->mpdf = $mpdf;
26 $this->writer = $writer;
31 foreach ($this->mpdf->spotColors as $name => $color) {
33 $this->writer->object();
35 $this->writer->write('[/Separation /' . str_replace(' ', '#20', $name));
36 $this->writer->write('/DeviceCMYK <<');
37 $this->writer->write('/Range [0 1 0 1 0 1 0 1] /C0 [0 0 0 0] ');
38 $this->writer->write(sprintf('/C1 [%.3F %.3F %.3F %.3F] ', $color['c'] / 100, $color['m'] / 100, $color['y'] / 100, $color['k'] / 100));
39 $this->writer->write('/FunctionType 2 /Domain [0 1] /N 1>>]');
40 $this
[all...]
/plugin/bez/ctl/
H A Dtask_form.php2 /** @var action_plugin_bez $this */
6 if ($this->model->get_level() < BEZ_AUTH_USER) {
11 $task = $this->model->taskFactory->create_object();
13 $this->tpl->set('task', $task);
14 $this->tpl->set('task_programs', $this->model->task_programFactory->get_all([], 'name'));
16 if ($this->get_param('action') == 'add') {
17 $this->model->taskFactory->initial_save($task, $_POST);
19 } elseif($this->get_param('duplicate') != '') {
20 $task_dup = $this
[all...]
/plugin/struct/meta/
H A DFilterValueListHandler.php19 return $this->row;
36 $this->row[$this->current_row] = $this->token;
40 $this->row[$this->current_row] = $this->token;
41 $this->token = '';
42 $this->current_row++;
56 $this
[all...]
/plugin/ipban/ip-lib/src/Address/
H A DIPv6.php68 $this->shortAddress = null;
69 $this->bytes = null;
70 $this->words = null;
71 $this->rangeType = null;
260 return $this->toString();
276 $this->bytes = $bytes;
279 return $this->bytes;
298 return $this->words;
414 return $this->rangeType;
439 return $this->longAddress;
[all …]
/plugin/odt/ODT/styles/
H A DODTTextListStyle.php120 $this->setPropertyInternal
294 …return $this->getPropertyInternal('list-level-style', $this->list_level_styles [$level]['list-styl…
298 return $this->getPropertyInternal($property, $this->list_level_styles [$level]['text']);
313 … return $this->getPropertyInternal($property, $this->list_level_styles [$level]['list-style']);
316 … return $this->getPropertyInternal($property, $this->list_level_styles [$level]['list-level']);
319 … return $this->getPropertyInternal($property, $this->list_level_styles [$level]['label']);
335 $this->setPropertyInternal
341 $this->setPropertyInternal
346 $this->setPropertyInternal
351 $this->setPropertyInternal
[all …]
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.audio.voc.php27 $info = &$this->getid3->info;
30 $this->fseek($info['avdataoffset']);
31 $VOCheader = $this->fread(26);
65 $BlockOffset = $this->ftell();
66 $BlockData = $this->fread(4);
78 $BlockData .= $this->fread(2);
105 $this->fseek($BlockSize, SEEK_CUR);
109 $BlockData .= $this->fread(4);
123 $BlockData .= $this->fread(12);
146 $this->fseek($BlockSize, SEEK_CUR);
[all …]
/plugin/newpagetemplate/
H A Dcli.php13 // $this->colors->disable();
14 $config = $this->colors->wrap('config', 'cyan');
15 $pg = $this->colors->wrap('page', 'cyan');
16 $ini = $this->colors->wrap('ini', 'cyan');
17 $browser = $this->colors->wrap('browser', 'cyan');
18 $cmdLine = $this->colors->wrap('cmdLine', 'cyan');
19 $browser = $this->colors->wrap('browser', 'cyan');
20 $nosave = $this->colors->wrap('true', 'cyan');
21 $false = $this->colors->wrap('false', 'cyan');
22 $existing = $this
[all...]
/plugin/openas/
H A Dsyntax.php29 $this->Lexer->addPattern('~~OpenAsVAR>.*?~~','plugin_openas');
30 $this->Lexer->addPattern('~~OpenAsNUM>.*?~~','plugin_openas');
38 $this->Lexer->addExitPattern('~~OpenAsVarsClose~~', 'plugin_openas');
49 $labels = $this->getConf('labels');
51 $this->labels['open'] = "";
52 $this->labels['close'] = "";
57 $this->labels['open'] = "<$ltype>";
58 $this->labels['close'] = "</$ltype>";
86 $match = $this->getLang('open_page'). '<br />' .
103 …$text = preg_replace('/\*\*(.*?)\*\*/ms', $this->labels['open'] ."$1" .$this->labels['close'] ,$te…
[all …]
/plugin/blogtng/syntax/
H A Dblog.php100 if(!in_array($type,$this->type_whitelist)){
138 $conf = array_merge($this->config, $conf);
155 $this->loadHelpers();
213 $this->config['sortorder'] = strtoupper($opt);
215 case (in_array($opt, $this->data_whitelist['sortby'])):
216 $this->config['sortby'] = substr($opt, 2);
219 $this->config['limit'] = $opt;
222 $this->config['order'] = $match[1];
225 $this->config['tpl'] = $match[1];
237 $this->tools = plugin_load('helper', 'blogtng_tools');
[all …]
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DTokenParser.php56 $this->tokens = token_get_all($contents);
67 $this->numTokens = count($this->tokens);
80 for ($i = $this->pointer; $i < $this->numTokens; $i++) {
81 $this->pointer++;
82 if ($this->tokens[$i][0] === T_WHITESPACE ||
83 $this->tokens[$i][0] === T_COMMENT ||
84 ($docCommentIsComment && $this->tokens[$i][0] === T_DOC_COMMENT)) {
89 return $this->tokens[$i];
108 while (($token = $this->next())) {
149 while (($token = $this->next())) {
[all …]
/plugin/findologicxmlexport/vendor/sebastian/recursion-context/tests/
H A DContextTest.php27 $this->context = new Context();
88 $this->setExpectedException(
92 $this->context->add($value);
102 $this->setExpectedException(
106 $this->context->contains($value);
115 $this->assertEquals($key, $this->context->add($value));
118 $this->assertEquals($key, $this->context->add($value));
129 $this->context->add($value);
130 $this->assertEquals($key, $this->context->contains($value));
133 $this->assertEquals($key, $this->context->contains($value));
[all …]
/plugin/dontfeedtemplates/
H A Daction.php20 $this->current_pagename_tpl =
21 $this->GetConf("current_pagename_tpl");
23 $this->inherited_pagename_tpl =
24 $this->GetConf("inherited_pagename_tpl");
26 $this->active = $this->GetConf("always");
30 $this->current_pagename_tpl =
32 $this->inherited_pagename_tpl =
37 $this->active = true;
48 if ($this->active) {
51 $this, 'handle_feed_item_add'
[all …]
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/Grammar/
H A DOptional.php21 $this->grammar = array();
23 $this->addGrammar($grammar);
30 foreach ($this->grammar as $grammar) {
39 $this->grammar[] = $grammar;
45 if ($this->grammar[0] instanceof Twig_Extensions_Grammar_Constant) {
46 …if (!$this->parser->getStream()->test($this->grammar[0]->getType(), $this->grammar[0]->getName()))…
49 } elseif ($this->grammar[0] instanceof Twig_Extensions_Grammar_Name) {
50 if (!$this->parser->getStream()->test(Twig_Token::NAME_TYPE)) {
53 } elseif ($this->parser->getStream()->test(Twig_Token::BLOCK_END_TYPE)) {
60 foreach ($this->grammar as $grammar) {
[all …]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DSaslBindRequest.php9 * file that was distributed with this source code.
52 $this->username = '';
53 $this->mechanism = $mechanism;
54 $this->credentials = $credentials;
55 $this->options = $options;
60 return $this->mechanism;
68 $this->mechanism = $mech;
70 return $this;
75 return $this->credentials;
80 return $this
[all...]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DPrimeField.php55 $this->modulo = $modulo;
57 $this->instanceID = self::$instanceCounter++;
58 Integer::setModulo($this->instanceID, $modulo);
59 … Integer::setRecurringModuloFunction($this->instanceID, $modulo->createRecurringModuloFunction());
69 $this->reduce = $func->bindTo($this, $this);
79 return new Integer($this->instanceID, $num);
94 …return new Integer($this->instanceID, BigInteger::randomRange($one, Integer::getModulo($this->inst…
104 return Integer::getModulo($this->instanceID)->getLengthInBytes();
114 return Integer::getModulo($this->instanceID)->getLength();
122 Integer::cleanupCache($this->instanceID);
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Property/
H A DSupportedMethodSetTest.php18 $this->server->httpRequest = $request;
19 $this->server->exec();
34 $this->sendPROPFIND($xml);
36 …$this->assertEquals(207, $this->response->status, 'We expected a multi-status response. Full respo…
38 …place("/xmlns(:[A-Za-z0-9_])?=(\"|\')DAV:(\"|\')/", "xmlns\\1=\"urn:DAV\"", $this->response->body);
43 $this->assertEquals(1, count($data), 'We expected 1 \'d:prop\' element');
46 $this->assertEquals(1, count($data), 'We expected 1 \'d:supported-method-set\' element');
49 $this->assertEquals(1, count($data), 'We expected 1 \'d:status\' element');
51 …$this->assertEquals('HTTP/1.1 200 OK', (string)$data[0], 'The status for this property should have…
57 $result = $this->server->getProperties('/', ['{DAV:}supported-method-set']);
[all …]
/plugin/mikioplugin/syntax/
H A Dtabgroup.php24 $classes = $this->buildClass($data, array('pills'));
26 $renderer->doc .= '<ul class="' . $this->elemClass . ' ' . $this->classPrefix . 'tab-group' . $classes . '">';
46 $tabs = $this->findTags($this->tagPrefix . 'tab', $data, $tabOptions);
49 $classes = $this->buildClass($tab['options'], array('disabled'));
51 $bar .= '<li class="' . $this->elemClass . ' ' . $this->classPrefix . 'tab-item' . $classes . '"><a class="' . $this->elemClass . ($first ? ' mikiop-active' : '') . '" data-toggle="tab" href="#">' . $tab['options']['title'] . '</a></li>';
52 $content .= '<div class="' . $this
[all...]
/plugin/statdisplay/pchart/
H A DGDCanvas.php13 $this->antialiasQuality = 0;
91 imagedestroy ( $this->Layers [0] );
109 $this->drawLine(new Point($X1, $Y1),
116 $this->drawLine(new Point($X2, $Y1),
123 $this->drawLine(new Point($X2, $Y2),
237 imageline($this->picture,
246 imageline($this->picture,
251 imageline($this->picture,
313 $this->drawDottedLine($point1,
496 return $this->picture;
[all …]
/plugin/statistics/inc/pchart/
H A DGDCanvas.php5 $this->picture = imagecreatetruecolor($xSize, $ySize);
7 $C_White = $this->allocateColor(new Color(255, 255, 255));
8 imagefilledrectangle($this->picture, 0, 0, $xSize, $ySize, $C_White);
9 if($transparent) imagecolortransparent($this->picture, $C_White);
11 $this->antialiasQuality = 0;
42 $this->drawFilledRectangle(
56 $this->drawFilledRectangle(
67 $this->drawFilledRectangle(
80 $C_Rectangle = $this->allocateColor($color);
81 imagefilledrectangle($this
[all...]
/plugin/findologicxmlexport/vendor/symfony/yaml/Command/
H A DLintCommand.php55 $this
86 $this->format = $input->getOption('format');
91 if (!$stdin = $this->getStdin()) {
95 return $this->display($io, [$this->validate($stdin, $flags)]);
100 if (!$this->isReadable($filename)) {
109 return $this->display($io, $filesInfo);
135 switch ($this->format) {
218 if (!$this->parser) {
219 $this->parser = new Parser();
222 return $this->parser;
[all …]
/plugin/fedauth/Auth/OpenID/
H A DSReg.php289 return array_merge($this->required, $this->optional);
347 $this->required[] = $field_name;
349 $this->optional[] = $field_name;
393 if ($this->required) {
397 if ($this->optional) {
401 if ($this->policy_url) {
425 $this->data = array();
427 $this->data = $data;
430 $this->ns_uri = $sreg_ns_uri;
502 return $this->data;
[all …]
/plugin/git/
H A Dhelper.php56 if(!$this->dt)
59 if(!$this->dt)
109 $res = $this->loadSqlite();
118 $this->sqlite->query($sql);
125 $res = $this->loadSqlite();
138 $res = $this->loadSqlite();
144 $this->sqlite->query($sql);
153 $this->getConf('');
169 $this->getConf('');
343 $this->getConf('');
[all …]
/plugin/tag/
H A Dhelper.php40 $this->namespace = $this->getConf('namespace');
41 if (!$this->namespace) {
42 $this->namespace = getNS($ID);
44 $this->sort = $this->getConf('sortkey');
45 $this->sortorder = $this->getConf('sortorder');
49 * Returns some documentation of the methods provided by this helper part
123 $this
[all...]
/plugin/photogallery/phpThumb/
H A Dphpthumb.bmp.php25 if ($this->getid3_bmp($BMPdata, $ThisFileInfo, true, true)) {
26 $gd = $this->PlotPixelsGD($ThisFileInfo['bmp'], $truecolor);
36 return $this->phpthumb_bmp2gd($BMPdata, $truecolor);
713 list($r, $g, $b) = $this->IntColor2RGB($color);
737 list($red, $green, $blue) = $this->IntColor2RGB($color);
758 $im = $this->PlotPixelsGD($BMPinfo['bmp']);
823 return $this->LittleEndian2Int(strrev($byteword));
836 $binarystring = $this->BigEndian2Bin($rawdata);
837 …return $this->Bin2Dec(substr($binarystring, 0, 2)) + (float) ($this->Bin2Dec(substr($binarystring,…
852 return $this->CastAsInt($decvalue * $signmult);
[all …]
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Splitter/
H A DICalendarTest.php12 $this->version = VObject\Version::VERSION;
35 $tempFile = $this->createStream($data);
59 $tempFile = $this->createStream($data);
74 $tempFile = $this->createStream($data);
91 $tempFile = $this->createStream($data);
121 $tempFile = $this->createStream($data);
132 PRODID:-//Sabre//Sabre VObject $this->version//EN
161 $tempFile = $this->createStream($data);
179 $this->assertEquals([], $messages);
255 $tempFile = $this->createStream($data);
[all …]

1...<<171172173174175176177178179180>>...1084