Lines Matching refs:this

21         $this->note = new ArrayObject($note);
22 $this->limit = $this->getBlockLimit($limit);
23 $this->count = 0;
25 parent::__construct($this->note->getIterator());
32 $result = $this->current()->isValid();
35 ++$this->count;
45 return parent::valid() && (($this->limit == 0) || ($this->count <= $this->limit));
55 $result = ceil($this->getValidCount() / $devider);
74 foreach ($this->note as $note) {
140 $this->scope = $scope;
141 $this->namespaceName = $namespaceName;
142 $this->id = -1;
143 $this->name = $name;
144 $this->inline = false;
145 $this->reference = array();
146 $this->text = '';
147 $this->processed = false;
154 $this->id = $this->scope->getNoteId();
156 if ($this->name == '') {
157 $this->name = '#' . $this->id;
165 return $this->id;
172 return $this->name;
179 return $this->namespaceName;
186 return $this->scope;
193 if ($this->text == '' || !$this->inline) {
194 $this->text = $text;
202 return $this->text;
209 if ($this->id == -1 && !$this->inline) {
210 $this->inline = $reference->isInline();
212 if (!$this->inline) {
213 $this->initId();
218 $this->reference[] = $reference;
219 $this->processed = false;
227 return !$this->processed && !empty($this->reference) && $this->text != '';
241 foreach ($this->reference as $reference) {
256 $result .= $this->scope->getName();
257 $result .= ':note' . $this->id;
266 $doc = $this->scope->getRenderer()->renderNote($mode, $this, $this->reference);
268 $this->reference = array();
269 $this->processed = true;
284 $this->loadDatabaseDefinition();
286 $this->inline = $this->getAttribute('inline', false);
293 $name = $this->namespaceName . $this->name;
297 $this->attributes = $note->getAttributes();
298 $this->data = $note->getData();
308 $exclude = $this->scope->getRenderer()->getReferencePrivateDataSet();
310 $this->data = array_merge($this->data, $data);
318 return !$this->processed && !empty($this->reference) && ($this->text != '' || $this->hasData());
326 if ($this->text == '' && $this->hasData()) {
327 foreach ($this->reference as $reference) {
328 $reference->rewrite($this->attributes, $this->data);
331 $this->reference[0]->setNoteText($this->scope->getRenderer()->renderNoteText($this));
334 $this->processed = true;