Lines Matching defs:note
15 private $note;
61 $note = refnotes_configuration::load('notes');
63 foreach ($note as $name => $data) {
64 $this->note[$name] = new refnotes_reference_database_note('{configuration}', $data);
149 $found = array_key_exists($name, $this->note);
157 $found = array_key_exists($name, $this->note);
161 return $found ? $this->note[$name] : NULL;
171 $this->note = array_merge($this->note, $this->page[$pageId]->getNotes());
189 private $note;
199 $this->note = array();
310 * The data is organized in rows, one note per row. The first row contains the caption.
325 * Every note is stored in a separate table. The first column of the table contains
382 $note = new refnotes_reference_database_note($this->id, $data);
384 list($namespace, $name) = $note->getNameParts();
391 $this->note[$namespace . $name] = $note;
406 if (empty($this->note)) {
410 return $this->note;
441 $this->data['note-text'] = $data['text'];
452 if (isset($data['note-name'])) {
453 if (preg_match('/^' . refnotes_note::getNamePattern('full-extended') . '$/', $data['note-name']) == 1) {
454 $this->nameParts = refnotes_namespace::parseName($data['note-name']);
457 unset($data['note-name']);