Home
last modified time | relevance | path

Searched refs:content (Results 301 – 325 of 1767) sorted by relevance

1...<<11121314151617181920>>...71

/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/autoescape/
H A Dblock.test7 {% block content %}{% endblock %}
10 {% block content %}
14 {% set _content = block('content')|raw %}
/plugin/mdpage/vendor/cebe/markdown/block/
H A DQuoteTrait.php29 $content = [];
38 $content[] = $line;
46 'content' => $this->parseBlocks($content),
H A DFencedCodeTrait.php41 $content = [];
44 $content[] = $line;
51 'content' => implode("\n", $content),
/plugin/hide/
H A Dsyntax.php73 $data['content']= $match;
82 $content= $data['content'];
94 $renderer->doc.= $renderer->_xmlEntities($content);
/plugin/davcal/
H A Dall.css16 #dw_davcal__edit .ui-dialog-content,
17 #dw_davcal__confirm .ui-dialog-content,
18 #dw_davcal__settings .ui-dialog-content, {
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/
H A DAssetCache.php69 $content = $this->asset->dump($additionalFilter);
70 $this->cache->set($cacheKey, $content);
72 return $content;
80 public function setContent($content) argument
82 $this->asset->setContent($content);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Blogger/
H A DPost.php30 public $content; variable in Google\\Service\\Blogger\\Post
121 public function setContent($content) argument
123 $this->content = $content;
130 return $this->content;
/plugin/diagramsnet/lib/js/diagramly/
H A DGitLabClient.js460 var content = data.content;
466 content = 'data:image/jpeg;base64,' + content;
470 content = 'data:image/gif;base64,' + content;
474 content = 'data:application/pdf;base64,' + content;
484 content = xml;
488 content = 'data:image/png;base64,' + content;
493 content = Base64.decode(content);
498 return content;
579 (msg.content != null) ? msg.content : msg,
656 content: data, property in GitLabClient.writeFile.entity
[all …]
/plugin/webcode/_test/
H A Dwebcode.test.php37 $content='Teaser content';
43 .$content
61 $content='Teaser content';
67 .$content
/plugin/diagramsnet/
H A Daction.php53 $content = $INPUT->str('content');
54 $base64data = explode(",", $content)[1];
97 $result->content = "data:image/png;base64,".base64_encode($fc);
104 $result->content = "data:image/png;base64,";
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Objects/
H A DDisallowObjectStringIndexSniff.php76 $content = trim($tokens[$index]['content'], '"\' ');
77 if (strpos($content, '.') !== false) {
82 if ($content === 'super') {
/plugin/epub/scripts/
H A Dcheck_progess.php29 $content = io_readFile($progress_file); variable
30 if($content) {
31 echo "$content\n";
/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/
H A DHttp.php131 $content = JSON::stringify($data, \JSON_UNESCAPED_UNICODE | \JSON_UNESCAPED_SLASHES);
133 $content = $data;
136 $content = \str_replace('\/', '/', $content);
141 \curl_setopt($conn, \CURLOPT_POSTFIELDS, \gzencode($content));
146 \curl_setopt($conn, \CURLOPT_POSTFIELDS, $content);
/plugin/html2pdf/html2pdf/html2ps/
H A Dbox.inline.php97 $box = InlineBox::create_from_text($root->content,
272 $size = count($this->content);
274 if (is_null($this->content[$i]->show($driver))) {
366 $size = count($this->content);
368 $child =& $this->content[$i];
399 $size = count($this->content);
401 $child =& $this->content[$i];
425 $size = count($this->content);
427 $child =& $this->content[$i];
453 $content_size = count($this->content);
[all …]
H A Dvalue.content.php52 $content = array();
54 $content[] = $item->render($counters);
56 return join('', $content);
/plugin/htmlsafe/
H A Dsyntax.php38 list($tag,$content) = $data;
45 $renderer->doc .= preg_replace( "/<(\/?)($strict)(\s|>)/i", "&lt;$1$2$3", $content );
48 $renderer->doc .= p_xhtml_cached_geshi($content, 'html4strict', $wrapper);
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Filter/Yui/
H A DBaseCompressorFilter.php61 * @param string $content The content to compress
67 protected function compress($content, $type, $options = array()) argument
93 file_put_contents($input, $content);
105 throw FilterException::fromProcess($proc)->setInput($content);
/plugin/xtern/scripts/
H A Dchk_links.php64 foreach($dirContent as $key => $content) {
66 $path = $rootDir.'/'.$content;
68 if(!in_array($content, $invisibleFileNames)) {
74 $allData[] = array('path'=>$path,'file'=>$content, 'id'=>$ns);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Recommender/
H A DGoogleCloudRecommenderV1Recommendation.php93 public function setContent(GoogleCloudRecommenderV1RecommendationContent $content) argument
95 $this->content = $content;
102 return $this->content;
/plugin/remotescript/lib/JsHttpRequest/debug/
H A DJsHttpRequest.js92 t.send = function(content) { argument
103 if (!this._hash2query(content, null, queryText, queryElem)) return;
234 t._hash2query = function(content, prefix, queryText, queryElem) { argument
236 if((''+typeof(content)).toLowerCase() == 'object') {
238 …if (content && content.parentNode && content.parentNode.appendChild && content.tagName && content.…
239 content = { form: content }; class in t._hash2query
241 for (var k in content) {
242 var v = content[k];
270 queryText[queryText.length] = content;
379 JsHttpRequest.query = function(url, content, onready, nocache) { argument
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/exceptions/
H A Dchild_contents_outside_blocks.test2 Exception for child templates defining content outside blocks defined by parent
15 …late that extends another one cannot include content outside Twig blocks. Did you forget to put th…
/plugin/odt/ODT/
H A DODTList.php31 $params->content .= $list->getOpeningTag();
55 $params->content .= $list->getClosingTag();
101 $params->content .= $list_item->getOpeningTag();
157 $params->content .= $list_header->getOpeningTag();
226 …if (preg_match('/<text:p text:style-name="[^"]*">/', $params->content, $matches, 0, $position) ===…
272 $params->content = substr_replace ($params->content,
/plugin/virtualgroup/
H A Daction.php
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dphp_json_objects.asciidoc24 "content" : "quick brown fox"
29 "content" : {} <1>
36 The problem is that PHP will automatically convert `"content" : {}` into
37 `"content" : []`, which is no longer valid {es} DSL. We need to tell PHP that
46 'content' => 'quick brown fox'
51 'content' => new \stdClass() <1>
75 "match" : { "content" : "quick brown fox" }
95 'content' => 'quick brown fox'
117 'content' => 'quick brown fox'
/plugin/sequencediagram/bower_components/snap.svg/doc/css/
H A Dmain.css44 content: '';
168 #content {
175 #content section.code {
197 #content header h2 {
211 #content header{
214 #content header:before {
215 content: '';
228 #content pre {
355 #content {
403 #content {
[all …]

1...<<11121314151617181920>>...71