| /template/kajukkk/ |
| D | Snoopy.class.php | 129 $this->user = $URI_PARTS["user"]; 131 $this->pass = $URI_PARTS["pass"]; 140 $this->host = $URI_PARTS["host"]; 142 $this->port = $URI_PARTS["port"]; 143 if($this->_connect($fp)) 145 if($this->_isproxy) 148 $this->_httprequest($URI,$fp,$URI,$this->_httpmethod); 154 $this->_httprequest($path, $fp, $URI, $this->_httpmethod); 157 $this->_disconnect($fp); 159 if($this->_redirectaddr) [all …]
|
| /template/twigstarter/vendor/twig/twig/src/ |
| D | Lexer.php | 75 $this->env = $env; 77 $this->options = array_merge([ 90 if ($this->isInitialized) { 95 $this->regexes = [ 100 …preg_quote($this->options['whitespace_trim'].$this->options['tag_variable'][1], '#').'\s*'. // -}}… 102 …preg_quote($this->options['whitespace_line_trim'].$this->options['tag_variable'][1], '#').'['.$thi… 104 preg_quote($this->options['tag_variable'][1], '#'). // }} 112 …preg_quote($this->options['whitespace_trim'].$this->options['tag_block'][1], '#').'\s*\n?'. // -%}… 114 …preg_quote($this->options['whitespace_line_trim'].$this->options['tag_block'][1], '#').'['.$this->… 116 preg_quote($this->options['tag_block'][1], '#').'\n?'. // %}\n? [all …]
|
| D | Compiler.php | 39 return $this->env; 44 return $this->source; 52 $this->lastLine = null; 53 $this->source = ''; 54 $this->debugInfo = []; 55 $this->sourceOffset = 0; 57 $this->sourceLine = 1; 58 $this->indentation = $indentation; 59 $this->varNameSalt = 0; 61 return $this; [all …]
|
| D | Environment.php | 113 $this->setLoader($loader); 126 $this->useYield = (bool) $options['use_yield']; 127 $this->debug = (bool) $options['debug']; 128 $this->setCharset($options['charset'] ?? 'UTF-8'); 129 …$this->autoReload = null === $options['auto_reload'] ? $this->debug : (bool) $options['auto_reload… 130 $this->strictVariables = (bool) $options['strict_variables']; 131 $this->setCache($options['cache']); 132 $this->extensionSet = new ExtensionSet(); 133 $this->defaultRuntimeLoader = new FactoryRuntimeLoader([ 134 EscaperRuntime::class => function () { return new EscaperRuntime($this->charset); }, [all …]
|
| /template/dwsimple/dwsimple/ |
| D | simple.php | 15 $this->id =$id; 16 $this->top =$top; 17 $this->right =$right; 18 $this->bottom =$bottom; 19 $this->left =$left; 20 $this->type =$type; 23 $out[]="#".$this->id; 25 if (($align=$this->top->align) == $this->bottom->align) 29 $out[]="top : " . $this->top->val . $this->type .";"; 30 $out[]="height : " . ($this->bottom->val - $this->top->val) . $this->type .";"; [all …]
|
| /template/strap/ComboStrap/PageSqlParser/ |
| H A D | PageSqlParser.php | 242 …$this->interp = new ParserATNSimulator($this, self::$atn, self::$decisionToDFA, self::$sharedConte… 297 $localContext = new Context\FunctionNamesContext($this->ctx, $this->getState()); 299 $this->enterRule($localContext, 0, self::RULE_functionNames); 302 $this->enterOuterAlt($localContext, 1); 303 $this->setState(32); 305 $_la = $this->input->LA(1); 308 $this->errorHandler->recoverInline($this); 310 if ($this->input->LA(1) === Token::EOF) { 311 $this->matchedEOF = true; 314 $this->errorHandler->reportMatch($this); [all …]
|
| /template/strap/vendor/antlr/antlr4-php-runtime/src/ |
| H A D | Lexer.php | 118 $this->input = $input; 119 $this->factory = CommonTokenFactory::default(); 120 $this->tokenFactorySourcePair = new Pair($this, $input); 123 $this->interp = null;// child classes must populate this 129 if ($this->input !== null) { 130 $this->input->seek(0);// rewind the input 133 $this->token = null; 134 $this->type = Token::INVALID_TYPE; 135 $this->channel = Token::DEFAULT_CHANNEL; 136 $this->tokenStartCharIndex = -1; [all …]
|
| H A D | Parser.php | 123 $this->errorHandler = new DefaultErrorStrategy(); 125 $this->setInputStream($input); 131 if ($this->input !== null) { 132 $this->input->seek(0); 135 $this->errorHandler->reset($this); 136 $this->ctx = null; 137 $this->syntaxErrors = 0; 138 $this->matchedEOF = false; 139 $this->setTrace(false); 140 $this->precedenceStack = [0]; [all …]
|
| H A D | BufferedTokenStream.php | 76 $this->tokenSource = $tokenSource; 81 return $this->tokenSource; 86 return $this->index; 101 $this->lazyInit(); 103 $this->index = $this->adjustSeekIndex($index); 108 return \count($this->tokens); 115 if ($this->index >= 0) { 116 if ($this->fetchedEOF) { 119 $skipEofCheck = $this->index < \count($this->tokens) - 1; 122 $skipEofCheck = $this->index < \count($this->tokens); [all …]
|
| /template/mikio/inc/ |
| H A D | simple_html_dom.php | 142 $this->dom = $dom; 143 $dom->nodes[] = $this; 148 $this->clear(); 153 return $this->outertext(); 158 $this->dom = null; 159 $this->nodes = null; 160 $this->parent = null; 161 $this->children = null; 166 echo str_repeat("\t", $depth) . $this->tag; 168 if ($show_attr && count($this->attr) > 0) { [all …]
|
| H A D | parens-parser.php | 31 $this->current = array(); 32 $this->stack = array(); 34 $this->string = $string; 35 $this->length = strlen($this->string); 37 for ($this->position=0; $this->position < $this->length; $this->position++) { 38 switch ($this->string[$this->position]) { 40 $this->push(); 42 array_push($this->stack, $this->current); 43 $this->current = array(); 47 $this->push(); [all …]
|
| /template/bootstrap3/inc/ |
| D | simple_html_dom.php | 145 $this->dom = $dom; 146 $dom->nodes[] = $this; 151 $this->clear(); 156 return $this->outertext(); 161 $this->dom = null; 162 $this->nodes = null; 163 $this->parent = null; 164 $this->children = null; 169 echo str_repeat("\t", $depth) . $this->tag; 171 if ($show_attr && count($this->attr) > 0) { [all …]
|
| /template/strap/vendor/symfony/process/ |
| H A D | Process.php | 150 $this->commandline = $command; 151 $this->cwd = $cwd; 157 … if (null === $this->cwd && (\defined('ZEND_THREAD_SAFE') || '\\' === \DIRECTORY_SEPARATOR)) { 158 $this->cwd = getcwd(); 161 $this->setEnv($env); 164 $this->setInput($input); 165 $this->setTimeout($timeout); 166 $this->useFileHandles = '\\' === \DIRECTORY_SEPARATOR; 167 $this->pty = false; 216 if ($this->options['create_new_console'] ?? false) { [all …]
|
| /template/strap/vendor/symfony/yaml/ |
| H A D | Parser.php | 62 $this->filename = $filename; 65 return $this->parse(file_get_contents($filename), $flags); 67 $this->filename = null; 84 …new ParseException('The YAML value does not appear to be valid UTF-8.', -1, null, $this->filename); 87 $this->refs = []; 97 $data = $this->doParse($value, $flags); 102 $this->refsBeingParsed = []; 103 $this->offset = 0; 104 $this->lines = []; 105 $this->currentLine = ''; [all …]
|
| /template/bootstrap3/compat/inc/Menu/Item/ |
| D | AbstractItem.php | 63 $this->id = $ID; 64 $this->type = $this->getType(); 65 $this->params['do'] = $this->type; 67 if(!actionOK($this->type)) throw new \RuntimeException("action disabled: {$this->type}"); 80 if($this->label !== '') return $this->label; 84 $label = $lang['btn_' . $this->type]; 86 $label = sprintf($label, $this->replacement); 88 if($label === '') $label = '[' . $this->type . ']'; 101 if($this->title === '') return $this->getLabel(); 102 return $this->title; [all …]
|
| /template/mikio/inc/stemmechanics/lesserphp/ |
| H A D | lessc.inc.php | 82 foreach ((array)$this->importDir as $dir) { 84 if ($this->fileExists($file = $full.'.less') || $this->fileExists($file = $full)) { 107 $importPath = $this->flattenList($importPath[2]); 110 $str = $this->coerceString($importPath); 113 $url = $this->compileValue($this->lib_e($str)); 118 $realPath = $this->findImport($url); 122 if ($this->importDisabled) { 126 if (isset($this->allParsedFiles[realpath($realPath)])) { 130 $this->addParsedFile($realPath); 131 $parser = $this->makeParser($realPath); [all …]
|
| /template/twigstarter/vendor/twig/twig/src/Profiler/ |
| D | Profile.php | 32 $this->name = str_starts_with($name, '__internal_') ? 'INTERNAL' : $name; 33 $this->enter(); 38 return $this->template; 43 return $this->type; 48 return $this->name; 53 return self::ROOT === $this->type; 58 return self::TEMPLATE === $this->type; 63 return self::BLOCK === $this->type; 68 return self::MACRO === $this->type; 76 return $this->profiles; [all …]
|
| /template/strap/ComboStrap/ |
| H A D | ConditionalLength.php | 61 $this->conditionalLength = $value; 63 $this->defaultBreakpoint = $defaultBreakpoint; 69 $this->length = $value; 72 $this->length = $conditionalValue->getValue(); 73 $this->breakpoint = $conditionalValue->getBreakpoint(); 84 $this->axis = "x"; 87 $this->axis = "y"; 92 $this->parseAsNumberWithOptionalUnit(); 95 $this->parseAsRatio(); 114 return $this->unitInLength; [all …]
|
| H A D | FetcherMarkup.php | 241 if (!$this->deleteRootBlockElement) { 293 $wikiPath = $this->getSourcePath()->toWikiPath(); 299 $url->addQueryParameter("context-id", $this->getRequestedContextPath()->getWikiId()); 310 if (isset($this->mime)) { 311 return $this->mime; 330 if (!$this->isPathExecution()) { 334 if (isset($this->processedInstructions)) { 343 …$executionContext = ExecutionContext::getActualOrCreateFromEnv()->setExecutingMarkupHandler($this); 345 $useCache = $this->instructionsCache->useCache(); 355 if (!$this->isPathExecution()) { [all …]
|
| H A D | MarkupPath.php | 195 $this->path = $path; 197 $this->setCorrectPathForDirectoryToIndexPage(); 199 $this->buildPropertiesFromFileSystem(); 277 $this->canonical 280 return $this; 291 $name = $this->getPathObject()->getLastNameWithoutExtension(); 306 $name = $this->getPathObject()->getLastNameWithoutExtension(); 322 $name = $this->getPathObject()->getLastNameWithoutExtension(); 344 return $this->canonical->getValueFromStoreOrDefault(); 357 $this->readStore = null; [all …]
|
| /template/strap/vendor/php-webdriver/webdriver/lib/Support/Events/ |
| H A D | EventFiringWebElement.php | 31 $this->element = $element; 32 $this->dispatcher = $dispatcher; 40 return $this->dispatcher; 48 return $this->element; 58 $this->dispatch('beforeChangeValueOf', $this); 61 $this->element->sendKeys($value); 63 $this->dispatchOnException($exception); 66 $this->dispatch('afterChangeValueOf', $this); 68 return $this; 77 $this->dispatch('beforeClickOn', $this); [all …]
|
| H A D | EventFiringWebDriver.php | 35 $this->dispatcher = $dispatcher ?: new WebDriverDispatcher(); 36 if (!$this->dispatcher->getDefaultDriver()) { 37 $this->dispatcher->setDefaultDriver($this); 39 $this->driver = $driver; 47 return $this->dispatcher; 55 return $this->driver; 65 $this->dispatch('beforeNavigateTo', $url, $this); 68 $this->driver->get($url); 70 $this->dispatchOnException($exception); 73 $this->dispatch('afterNavigateTo', $url, $this); [all …]
|
| /template/strap/vendor/carica/phpcss/src/PhpCss/Ast/Visitor/ |
| H A D | Xpath.php | 116 $this->setOptions($options, $defaultPrefix); 130 $this->hasOption(self::OPTION_EXPLICIT_NAMESPACES) && 131 $this->hasOption(self::OPTION_DEFAULT_NAMESPACE) 142 $this->_options = $options; 143 $this->_defaultNamespacePrefix = trim($defaultPrefix); 150 $this->_buffer = ''; 151 $this->_status = self::STATUS_DEFAULT; 160 $this->_buffer .= $string; 171 $this->_status = $status; 173 return $this->_status; [all …]
|
| H A D | Explain.php | 34 $this->clear(); 41 $this->_current = $this->_document = new DOMDocument(); 48 return (string)$this->_document->saveXml(); 61 $result = $this->_document->createElementNS($this->_xmlns, $name); 64 $this->_document->createElementNs($this->_xmlns, $contentType) 68 $this->_document->createCDATASection($content) 72 $this->_document->createTextNode($content) 79 $this->_current->appendChild($result); 87 $text = $this->_current->appendChild( 88 $this->_document->createElementNs($this->_xmlns, 'text') [all …]
|
| /template/strap/vendor/salesforce/handlebars-php/src/Handlebars/ |
| H A D | Tokenizer.php | 99 $this->reset(); 103 $this->otag = $otag; 104 $this->ctag = $ctag; 107 $openingTagLength = strlen($this->otag); 108 $closingTagLength = strlen($this->ctag); 109 $firstOpeningTagCharacter = $this->otag[0]; 110 $firstClosingTagCharacter = $this->ctag[0]; 118 switch ($this->state) { 121 …if ($character === $firstOpeningTagCharacter && $this->tagChange($this->otag, $text, $i, $openingT… 124 $this->flushBuffer(); [all …]
|