Lines Matching refs:listCalls
7 protected $listCalls = []; variable in dokuwiki\\Parsing\\Handler\\Lists
33 $this->callWriter->writeCalls($this->listCalls);
45 $this->listCalls[] = ['list' . $listType . '_open', [], $call[2]];
46 $this->listCalls[] = ['listitem_open', [1], $call[2]];
47 $this->listCalls[] = ['listcontent_open', [], $call[2]];
57 $this->listCalls[] = ['listcontent_close', [], $call[2]];
60 $this->listCalls[] = ['listitem_close', [], $call[2]];
61 $this->listCalls[] = ['list' . $list[0] . '_close', [], $call[2]];
79 $this->listCalls[] = ['listcontent_close', [], $call[2]];
80 $this->listCalls[] = ['listitem_close', [], $call[2]];
81 $this->listCalls[] = ['listitem_open', [$depth - 1], $call[2]];
82 $this->listCalls[] = ['listcontent_open', [], $call[2]];
85 $this->listStack[$key][2] = count($this->listCalls) - 2;
89 $this->listCalls[] = ['listcontent_close', [], $call[2]];
90 $this->listCalls[] = ['listitem_close', [], $call[2]];
91 $this->listCalls[] = ['list' . $end[0] . '_close', [], $call[2]];
92 $this->listCalls[] = ['list' . $listType . '_open', [], $call[2]];
93 $this->listCalls[] = ['listitem_open', [$depth - 1], $call[2]];
94 $this->listCalls[] = ['listcontent_open', [], $call[2]];
97 $this->listStack[] = [$listType, $depth, count($this->listCalls) - 2];
100 $this->listCalls[] = ['listcontent_close', [], $call[2]];
101 $this->listCalls[] = ['list' . $listType . '_open', [], $call[2]];
102 $this->listCalls[] = ['listitem_open', [$depth - 1], $call[2]];
103 $this->listCalls[] = ['listcontent_open', [], $call[2]];
106 $this->listCalls[$this->listStack[$key][2]][1][1] = self::NODE;
108 $this->listStack[] = [$listType, $depth, count($this->listCalls) - 2];
110 $this->listCalls[] = ['listcontent_close', [], $call[2]];
111 $this->listCalls[] = ['listitem_close', [], $call[2]];
112 $this->listCalls[] = ['list' . $end[0] . '_close', [], $call[2]];
125 $this->listCalls[] = ['listitem_close', [], $call[2]];
128 $this->listCalls[] = ['listitem_open', [$depth - 1], $call[2]];
129 $this->listCalls[] = ['listcontent_open', [], $call[2]];
132 $this->listStack[$key][2] = count($this->listCalls) - 2;
135 $this->listCalls[] = ['list' . $end[0] . '_close', [], $call[2]];
136 $this->listCalls[] = ['list' . $listType . '_open', [], $call[2]];
137 $this->listCalls[] = ['listitem_open', [$depth - 1], $call[2]];
138 $this->listCalls[] = ['listcontent_open', [], $call[2]];
141 $this->listStack[] = [$listType, $depth, count($this->listCalls) - 2];
148 $this->listCalls[] = ['listitem_close', [], $call[2]];
149 $this->listCalls[] = ['list' . $end[0] . '_close', [], $call[2]];
159 $this->listCalls[] = $call;