Lines Matching refs:call

29         foreach ($this->calls as $call) {
30 switch ($call[0]) {
32 $this->listOpen($call);
35 $this->listStart($call);
38 $this->listEnd($call);
41 $this->listContent($call);
50 protected function listStart($call)
52 $depth = $this->interpretSyntax($call[1][0], $listType);
58 $this->listCalls[] = ['list' . $listType . '_open', [], $call[2]];
59 $this->listCalls[] = ['listitem_open', [1], $call[2]];
60 $this->listCalls[] = ['listcontent_open', [], $call[2]];
64 protected function listEnd($call)
70 $this->listCalls[] = ['listcontent_close', [], $call[2]];
73 $this->listCalls[] = ['listitem_close', [], $call[2]];
74 $this->listCalls[] = ['list' . $list[0] . '_close', [], $call[2]];
78 protected function listOpen($call)
80 $depth = $this->interpretSyntax($call[1][0], $listType);
92 $this->listCalls[] = ['listcontent_close', [], $call[2]];
93 $this->listCalls[] = ['listitem_close', [], $call[2]];
94 $this->listCalls[] = ['listitem_open', [$depth - 1], $call[2]];
95 $this->listCalls[] = ['listcontent_open', [], $call[2]];
102 $this->listCalls[] = ['listcontent_close', [], $call[2]];
103 $this->listCalls[] = ['listitem_close', [], $call[2]];
104 $this->listCalls[] = ['list' . $end[0] . '_close', [], $call[2]];
105 $this->listCalls[] = ['list' . $listType . '_open', [], $call[2]];
106 $this->listCalls[] = ['listitem_open', [$depth - 1], $call[2]];
107 $this->listCalls[] = ['listcontent_open', [], $call[2]];
113 $this->listCalls[] = ['listcontent_close', [], $call[2]];
114 $this->listCalls[] = ['list' . $listType . '_open', [], $call[2]];
115 $this->listCalls[] = ['listitem_open', [$depth - 1], $call[2]];
116 $this->listCalls[] = ['listcontent_open', [], $call[2]];
123 $this->listCalls[] = ['listcontent_close', [], $call[2]];
124 $this->listCalls[] = ['listitem_close', [], $call[2]];
125 $this->listCalls[] = ['list' . $end[0] . '_close', [], $call[2]];
138 $this->listCalls[] = ['listitem_close', [], $call[2]];
141 $this->listCalls[] = ['listitem_open', [$depth - 1], $call[2]];
142 $this->listCalls[] = ['listcontent_open', [], $call[2]];
148 $this->listCalls[] = ['list' . $end[0] . '_close', [], $call[2]];
149 $this->listCalls[] = ['list' . $listType . '_open', [], $call[2]];
150 $this->listCalls[] = ['listitem_open', [$depth - 1], $call[2]];
151 $this->listCalls[] = ['listcontent_open', [], $call[2]];
161 $this->listCalls[] = ['listitem_close', [], $call[2]];
162 $this->listCalls[] = ['list' . $end[0] . '_close', [], $call[2]];
170 protected function listContent($call)
172 $this->listCalls[] = $call;