Lines Matching refs:listCalls

7     protected $listCalls = [];  variable in dokuwiki\\Parsing\\Handler\\Lists
38 $this->callWriter->writeCalls($this->listCalls);
50 $this->listCalls[] = ['list' . $listType . '_open', [], $call[2]];
51 $this->listCalls[] = ['listitem_open', [1], $call[2]];
52 $this->listCalls[] = ['listcontent_open', [], $call[2]];
62 $this->listCalls[] = ['listcontent_close', [], $call[2]];
65 $this->listCalls[] = ['listitem_close', [], $call[2]];
66 $this->listCalls[] = ['list' . $list[0] . '_close', [], $call[2]];
84 $this->listCalls[] = ['listcontent_close', [], $call[2]];
85 $this->listCalls[] = ['listitem_close', [], $call[2]];
86 $this->listCalls[] = ['listitem_open', [$depth - 1], $call[2]];
87 $this->listCalls[] = ['listcontent_open', [], $call[2]];
90 $this->listStack[$key][2] = count($this->listCalls) - 2;
94 $this->listCalls[] = ['listcontent_close', [], $call[2]];
95 $this->listCalls[] = ['listitem_close', [], $call[2]];
96 $this->listCalls[] = ['list' . $end[0] . '_close', [], $call[2]];
97 $this->listCalls[] = ['list' . $listType . '_open', [], $call[2]];
98 $this->listCalls[] = ['listitem_open', [$depth - 1], $call[2]];
99 $this->listCalls[] = ['listcontent_open', [], $call[2]];
102 $this->listStack[] = [$listType, $depth, count($this->listCalls) - 2];
105 $this->listCalls[] = ['listcontent_close', [], $call[2]];
106 $this->listCalls[] = ['list' . $listType . '_open', [], $call[2]];
107 $this->listCalls[] = ['listitem_open', [$depth - 1], $call[2]];
108 $this->listCalls[] = ['listcontent_open', [], $call[2]];
111 $this->listCalls[$this->listStack[$key][2]][1][1] = self::NODE;
113 $this->listStack[] = [$listType, $depth, count($this->listCalls) - 2];
115 $this->listCalls[] = ['listcontent_close', [], $call[2]];
116 $this->listCalls[] = ['listitem_close', [], $call[2]];
117 $this->listCalls[] = ['list' . $end[0] . '_close', [], $call[2]];
130 $this->listCalls[] = ['listitem_close', [], $call[2]];
133 $this->listCalls[] = ['listitem_open', [$depth - 1], $call[2]];
134 $this->listCalls[] = ['listcontent_open', [], $call[2]];
137 $this->listStack[$key][2] = count($this->listCalls) - 2;
140 $this->listCalls[] = ['list' . $end[0] . '_close', [], $call[2]];
141 $this->listCalls[] = ['list' . $listType . '_open', [], $call[2]];
142 $this->listCalls[] = ['listitem_open', [$depth - 1], $call[2]];
143 $this->listCalls[] = ['listcontent_open', [], $call[2]];
146 $this->listStack[] = [$listType, $depth, count($this->listCalls) - 2];
153 $this->listCalls[] = ['listitem_close', [], $call[2]];
154 $this->listCalls[] = ['list' . $end[0] . '_close', [], $call[2]];
164 $this->listCalls[] = $call;