Lines Matching refs:this

20         refnotes_localization::initialize($this);
22 $this->locale = refnotes_localization::getInstance();
36 print($this->locale_xhtml('intro'));
40 $this->printLanguageStrings();
43 print('<noscript><div class="error">' . $this->locale->getLang('noscript') . '</div></noscript>');
47 $this->printGeneral();
48 $this->printNamespaces();
49 $this->printNotes();
51 print($this->getButton('save'));
63 $lang = $this->locale->getByPrefix('js');
106 $html .= ' value="' . $this->locale->getLang('btn_' . $action) . '"';
123 $this->id = $id;
124 $this->title = 'sec_' . $id;
131 $this->open();
132 $this->printFields();
133 $this->close();
140 $title = refnotes_localization::getInstance()->getLang($this->title);
142 print('<fieldset id="' . $this->id . '">');
159 $field = $this->getFields();
161 $this->printFieldRow($f);
169 $fieldData = $this->getFieldDefinitions();
224 $this->listRows = $listRows;
233 $this->printListControls();
244 print($this->getEdit());
245 print($this->getButton('add'));
246 print($this->getButton('rename'));
247 print($this->getButton('delete'));
257 $id = 'name-' . $this->id;
272 $id = $action . '-' . $this->id;
286 $field = $this->getFields();
291 print('<select class="list" id="select-' . $this->id . '" size="' . $this->listRows . '"></select>');
294 $this->printFieldRow($field[0], false);
297 $this->printFieldRow($field[$f]);
508 $this->id = 'field-' . $id;
509 $this->label = 'lbl_' . $id;
512 $this->settingName = '';
515 $this->settingName = $id;
525 if ($this->settingName != '') {
526 $html = '<span class="outkey">' . $this->settingName . '</span>';
536 $label = refnotes_localization::getInstance()->getLang($this->label);
538 return '<label for="' . $this->id . '">' . $label . '</label>';
558 $html .= ' id="' . $this->id . '"';
559 $html .= ' name="' . $this->id . '" value="1"';
577 $this->option = $data['option'];
589 $html .= ' id="' . $this->id . '"';
590 $html .= ' name="' . $this->id . '">' . DOKU_LF;
592 foreach ($this->option as $option) {
620 $html .= ' id="' . $this->id . '"';
621 $html .= ' name="' . $this->id . '" />' . DOKU_LF;
648 $html .= ' id="' . $this->id . '"';
649 $html .= ' name="' . $this->id . '" />' . DOKU_LF;
652 $html .= ' id="' . $this->id . '-inherit"';
653 $html .= ' name="' . $this->id . '-inherit"';
674 $this->rows = $data['rows'];
683 $html .= ' id="' . $this->id . '"';
684 $html .= ' name="' . $this->id . '"';
685 $html .= ' cols="40" rows="' . $this->rows . '">';