Lines Matching defs:note
62 private $note;
73 $this->note = array();
123 public function addNote($note) {
124 $this->note[] = $note;
131 $block = new refnotes_note_block_iterator($this->note, $limit);
133 foreach ($block as $note) {
134 $note->rewriteReferences();
144 foreach ($this->note as $note) {
145 $minReferenceId[] = $note->getMinReferenceId();
148 array_multisort($minReferenceId, $this->note);
150 $block = new refnotes_note_block_iterator($this->note, $limit);
153 foreach ($block as $note) {
154 $doc .= $note->render($mode);
167 * Finds a note given it's name or id
180 foreach ($this->note as $note) {
181 if (($note->getNamespaceName() == $namespaceName) && ($note->$getter() == $noteName)) {
182 $result = $note;