Home
last modified time | relevance | path

Searched refs:templateContent (Results 1 – 4 of 4) sorted by relevance

/plugin/dokullm/
H A DLlmClient.php272 $templateContent = $this->getPageContent($metadata['template']);
273 if ($templateContent !== false) {
274 …Pornește de la acest template (" . $metadata['template'] . "):\n" . $templateContent . "\n</templa…
797 $templateContent = $this->getPageContent($pageId);
798 if ($templateContent !== false) {
799 return $templateContent;
811 $templateContent = $this->getPageContent($pageId[0]);
812 if ($templateContent !== false) {
813 return $templateContent;
H A Daction.php196 $templateContent = $this->getPageContent($templateId);
197 if ($templateContent === false) {
200 echo json_encode(['result' => ['content' => $templateContent]]);
/plugin/combo/ComboStrap/
H A DTemplateEngine.php302 * @param string|null $templateContent - the content
305 …public function createTemplate(string $templateName, string $templateContent = null): TemplateEngi… argument
314 if ($templateContent === null) {
315 $templateContent = <<<EOF
324 FileSystems::setContent($templateFile, $templateContent);
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
DEnvironmentTest.php220 $templateContent = __FUNCTION__;
223 $loader = $this->getMockLoader($templateName, $templateContent);
247 $templateContent = __FUNCTION__;
250 $loader = $this->getMockLoader($templateName, $templateContent);
275 $templateContent = __FUNCTION__;
278 $loader = $this->getMockLoader($templateName, $templateContent);
528 protected function getMockLoader($templateName, $templateContent) argument
536 ->will($this->returnValue(new Source($templateContent, $templateName)));