Home
last modified time | relevance | path

Searched refs:lines (Results 51 – 75 of 529) sorted by last modified time

12345678910>>...22

/plugin/data/syntax/
H A Dtable.php84 // get lines and additional class
85 $lines = explode("\n", $match);
86 array_pop($lines);
87 $class = array_shift($lines);
104 foreach ($lines as $line) {
/plugin/bpmnio/vendor/dmn-js/
H A DCHANGELOG.md15 * `FEAT`: break long table headers in multiple lines ([#719](https://github.com/bpmn-io/dmn-js/issu…
/plugin/upgrade/
H A Dlegacy.php33 function linesToHash($lines)
35 $lines = array_map('trim', $lines);
36 $lines = array_filter($lines);
37 $lines = array_map(function ($item) {
39 }, $lines);
40 return array_combine(array_column($lines, 0), array_column($lines, 1));
31 linesToHash($lines) global() argument
/plugin/upgrade/HTTP/
H A DHTTPClient.php771 $lines = explode("\n",$string);
772 array_shift($lines); //skip first line (status)
773 foreach($lines as $line){
/plugin/upgrade/vendor/splitbrain/php-cli/src/
H A DTableFormatter.php295 $lines = explode($break, $str);
296 foreach ($lines as &$line) {
323 return implode($break, $lines);
/plugin/smtp/classes/
H A DMessage.php76 $lines = preg_split('/\r?\n/', $this->body);
77 $count = count($lines);
79 if(trim($lines[$i]) === '') break; // end of headers, we're done
80 if(substr($lines[$i],0, 4) == 'Bcc:') {
81 unset($lines[$i]); // we found the Bcc: header and remove it
82 while(substr($lines[++$i],0, 1) === ' ') {
83 unset($lines[$i]); // indented lines are header continuation
88 $body = join($this->CRLF, $lines);
/plugin/farmer/_animal/data/pages/wiki/
H A Dsyntax.txt20 **Paragraphs** are created from blank lines. If you want to **force a newline** without a paragraph, you can use two backslashes followed by a whitespace or the end of line.
/plugin/sql2wiki/
H A DCsv.php55 $lines = array_values(array_filter(preg_split('/\r\n|\r|\n/', $csv)));
56 $array = array_map('str_getcsv', $lines);
/plugin/approve/syntax/
H A Dtable.php30 $lines = explode("\n", $match);
31 array_shift($lines);
32 array_pop($lines);
42 foreach ($lines as $line) {
/plugin/structacl/
H A Dhelper.php14 $lines = explode(PHP_EOL , $confValue);
17 foreach ($lines as $line) {
/plugin/notification/syntax/
H A Dlist.php33 $lines = explode("\n", $match);
34 array_shift($lines);
35 array_pop($lines);
43 foreach ($lines as $line) {
/plugin/ireadit/syntax/
H A Dlist.php26 $lines = explode("\n", $match);
27 array_shift($lines);
28 array_pop($lines);
47 foreach ($lines as $line) {
/plugin/odt/
H A DChangeLog.txt25 * Fixed issue 'IntelliJ IDEA inspections doesn't like "empty ($picture) === true" lines #41'
/plugin/openid/Auth/OpenID/
H A DKVForm.php34 $lines = explode("\n", $kvs);
36 $last = array_pop($lines);
38 array_push($lines, $last);
46 for ($lineno = 0; $lineno < count($lines); $lineno++) {
47 $line = $lines[$lineno];
/plugin/prosemirror/parser/
H A DListItemNode.php42 $lines = [];
53 $lines[] = $prefixLinebreak . $node->toSyntax();
55 return implode("", $lines);
H A DListNode.php43 $lines = $li->toSyntax();
44 if (!empty($lines) && $lines[0] !== ' ') {
47 $liText .= $lines . "\n";
H A DPreformattedNode.php19 $lines = explode("\n", $this->data['content'][0]['text']);
20 $text = implode("\n ", $lines);
/plugin/orphanmedia2/
H A DREADME28 Basic usage is to place one or more of the following syntax lines into the page markup of page with…
H A Ddokuwiki-plugin-page.md52 **Basic** usage is to place one of the following five syntax lines into the page markup of a page w…
/plugin/barcodes/
H A DLICENSE.md72 (ten or fewer lines in length), you do both of the following:
H A Dcomposer.lock384 "sebastian/lines-of-code": "^1.0.3",
1348 "name": "sebastian/lines-of-code",
1352 "url": "https://github.com/sebastianbergmann/lines-of-code.git",
1357 …"url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed88…
1390 "description": "Library for counting the lines of code in PHP source code",
1391 "homepage": "https://github.com/sebastianbergmann/lines-of-code",
1393 "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
1394 "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
/plugin/statdisplay/helper/
H A Dlog.php93 $lines = 0;
94 while (feof($fh) == 0 && $lines < $maxlines) {
96 $lines++;
271 return $lines;
/plugin/statdisplay/
H A Daction.php29 $lines = $log->parseLogData($this->getConf('lines'));
32 if ($lines) {
36 echo "logfile analysis finished analyzing $lines lines.\n";
/plugin/advanced/lang/en/config/
H A Dacl.txt7 Empty lines and shell-style comments are ignored. Each line contains 3 whitespace separated fields:
H A Dusers.txt5 Empty lines, and everything after a ''#'' character are ignored. Each line contains a colon separat…

12345678910>>...22