| /dokuwiki/inc/Form/ |
| H A D | ButtonElement.php | 15 protected $content = ''; variable in dokuwiki\\Form\\ButtonElement 19 * @param string $content HTML content of the button. You have to escape it yourself. 21 public function __construct($name, $content = '') argument 24 $this->content = $content; 34 … return '<button ' . buildAttributes($this->attrs(), true) . '>' . $this->content . '</button>';
|
| H A D | Form.php | 294 * @param string $content 298 public function addButton($name, $content, $pos = -1) argument 300 return $this->addElement(new ButtonElement($name, hsc($content)), $pos); 332 * @param string $content 337 public function addLabelHTML($content, $for = '', $pos = -1) argument 339 $element = new LabelElement($content);
|
| /dokuwiki/inc/Feed/ |
| H A D | FeedMediaProcessor.php | 42 public function getBody($content) argument 44 switch ($content) { 155 $content = '<table>'; 156 $content .= '<tr>'; 157 $content .= '<th width="50%">' . ($src1 ? $src1->getRev() : '') . '</th>'; 158 $content .= '<th width="50%">' . $lang['current'] . '</th>'; 159 $content .= '</tr>'; 160 $content .= '<tr>'; 162 $content .= '<td align="center">'; 167 $content .= '</td>'; [all …]
|
| H A D | FeedPageProcessor.php | 35 public function getBody($content) argument 39 switch ($content) { 50 $content = '<table>'; 51 … $content .= '<tr><th colspan="2" width="50%">' . dformat($this->getPrev()) . '</th>'; 52 $content .= '<th colspan="2" width="50%">' . $lang['current'] . '</th></tr>'; 53 $content .= $tdf->format($diff); 54 $content .= '</table>'; 55 return $content;
|
| H A D | FeedItemProcessor.php | 88 * @param string $content The item_content option 91 abstract public function getBody($content); argument
|
| /dokuwiki/_test/tests/test/ |
| H A D | edit_and_save.test.php | 25 $content = $response->getContent(); 26 $this->assertTrue(!empty($content)); 30 preg_match_all('#<h1[^>]*>Headline2</h1[^>]*>#', $content, $matches, PREG_SET_ORDER); 45 $result = preg_match($pattern, $content, $formA); 58 $content = $response->getContent(); 62 $content = str_replace("\n", " ", $content); 67 $result = preg_match($pattern, $content, $editForm); 108 $content = $response->getContent(); 109 $this->assertTrue(!empty($content)); 113 preg_match_all('#<h1[^>]*>Headline2</h1[^>]*>#', $content, $matches, PREG_SET_ORDER); [all …]
|
| /dokuwiki/_test/tests/conf/ |
| H A D | title.test.php | 10 $content = $response->queryHTML('title'); 11 $this->assertTrue(strpos($content,$conf['title']) > 0); 16 $content = $response->queryHTML('title'); 17 $this->assertTrue(strpos($content,'Foo') > 0);
|
| /dokuwiki/_test/core/ |
| H A D | TestResponse.php | 11 protected $content; variable in TestResponse 29 function __construct($content, $headers, $data = array()) { argument 30 $this->content = $content; 41 return $this->content; 105 $this->pq->html($this->content);
|
| /dokuwiki/_test/data/pages/int/ |
| H A D | editandsavetest.txt | 5 Headline 1 content. 8 Headline 2a content. 11 Headline 2b content. 14 Headline 3 content.
|
| /dokuwiki/_test/tests/general/ |
| H A D | general_languagelint.test.php | 39 $content = rtrim(file_get_contents($file)); 40 if(substr($content,0,5) != '<?php') 43 if(substr($content,-2) == '?>')
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/ |
| H A D | ASN1.php | 285 $content = substr($encoded, $encoded_pos, $length); 308 'content' => $content, 316 $temp = self::decode_ber($content, $start, $content_pos); 322 if (substr($content, $content_pos + $length, 2) == "\0\0") { 352 if ($constructed || strlen($content) != 1) { 355 $current['content'] = (bool) ord($content[$content_pos]); 362 $current['content'] = new BigInteger(substr($content, $content_pos), -256); 371 $current['content'] = substr($content, $content_pos); 373 $temp = self::decode_ber($content, $start, $content_pos); 377 $length -= (strlen($content) - $content_pos); [all …]
|
| /dokuwiki/lib/images/admin/ |
| H A D | README | 2 See http://www.kde-look.org/content/show.php/nuvoX?content=38467
|
| /dokuwiki/_test/tests/inc/ |
| H A D | httpclient_http_proxy.test.php | 40 $this->assertStringContainsString('DokuWiki', $data, 'response content');
|
| /dokuwiki/inc/ |
| H A D | httputils.php | 251 * @param string $content 253 function http_cached_finish($file, $content) argument 258 io_saveFile($file, $content); 259 if (DOKU_HAS_GZIP) io_saveFile("$file.gz", $content); 265 echo gzencode($content, 9, FORCE_GZIP); 267 echo $content;
|
| H A D | io.php | 202 * @param string $content 209 function io_writeWikiPage($file, $content, $id, $rev = false) argument 217 $data = [[$file, $content, false], getNS($id), noNS($id), $rev]; 247 * @param string $content 253 function _io_saveFile($file, $content, $append) argument 263 gzwrite($fh, $content); 270 $content = $bzcontent . $content; 274 bzwrite($fh, $content); 279 fwrite($fh, $content); 299 * @param string $content [all …]
|
| /dokuwiki/lib/tpl/dokuwiki/css/ |
| H A D | _imgdetail.css | 15 [dir=rtl] #dokuwiki__detail div.content img { 23 [dir=rtl] #dokuwiki__detail div.content div.img_detail {
|
| H A D | _diff.css | 119 content: '\25C0'; /* left triangle */ 123 content: '\25B6'; /* right triangle */ 126 content: '\25C0\25C0'; 129 content: '\25B6\25B6';
|
| /dokuwiki/inc/Parsing/Lexer/ |
| H A D | Lexer.php | 248 * @param string $content Text parsed. 255 protected function invokeHandler($content, $is_match, $pos) argument 257 if (($content === "") || ($content === false)) { 269 return $this->handler->$handler($content, $is_match, $pos, $plugin); 272 return $this->handler->$handler($content, $is_match, $pos);
|
| /dokuwiki/lib/scripts/ |
| H A D | page.js | 123 var content = $content.html().trim(); 125 dw_page.insituPopup(this, 'insitu__fn').html(content) 145 makeToggle: function(handle, content, state){ argument 149 $content = jQuery(content);
|
| /dokuwiki/inc/Parsing/Handler/ |
| H A D | Block.php | 79 $content = ''; 85 $content .= $this->calls[$i][1][0]; 87 $content = 'found markup'; 92 if (trim($content) == '') {
|
| /dokuwiki/lib/plugins/usermanager/ |
| H A D | cli.php | 125 $content = [$username]; 127 $content[] = $user['name']; 128 $content[] = $user['mail']; 129 $content[] = implode(", ", $user['grps']); 133 $content
|
| /dokuwiki/_test/tests/TreeBuilder/ |
| H A D | ControlPageBuilderTest.php | 67 '+content',
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/ |
| H A D | SCP.php | 230 $content = ''; 260 $content .= $data; 281 return isset($content) ? $content : true;
|
| /dokuwiki/lib/styles/ |
| H A D | feed.css | 12 generator, content, created, issued, modified, subject, id, format, creator, selector 33 content: "This data file is meant to be read in a XML feed reader. See document source."
|
| /dokuwiki/vendor/splitbrain/lesserphp/src/ |
| H A D | Parser.php | 683 $content = []; 686 $content[] = $m[1]; 704 $content[] = $str; 709 $content[] = $inter; 717 $content[] = $tok; 723 if (count($content) == 0) return false; 726 if (is_string(end($content))) { 727 $content[count($content) - 1] = rtrim(end($content)); 730 $out = ['string', '', $content]; 745 $content = []; [all …]
|