Lines Matching refs:pageId
74 private $pageId; variable in dokuwiki\\plugin\\dokullm\\LlmClient
96 …$top_k = null, $min_p = null, $think = null, $profile = null, $chromaClient = null, $pageId = null) argument
109 $this->pageId = $pageId;
623 $variables['current_date'] = $this->getPageDate($this->pageId);
688 * @param string $pageId The page ID to retrieve
692 public function getPageContent($pageId) argument
695 $cleanId = cleanID($pageId);
717 * @param string $pageId Optional page ID to extract date from (defaults to current page)
720 private function getPageDate($pageId = null) argument
723 $targetPageId = $pageId ?: $this->pageId;
790 * @param string|null $pageId Optional page ID to retrieve template from directly
793 private function getTemplateContent($pageId = null) argument
796 if ($pageId !== null) {
797 $templateContent = $this->getPageContent($pageId);
809 $pageId = $this->queryChromaDBTemplate($this->getCurrentText());
810 if (!empty($pageId)) {
811 $templateContent = $this->getPageContent($pageId[0]);
913 $pageId = $pageId;
915 if (!empty($this->pageId)) {
917 $parts = explode(':', $this->pageId);