Lines Matching refs:id

70      * Accepts message array that starts with message id followed by optional arguments.
81 * Accepts message array that starts with message id followed by optional arguments.
108 foreach ($config->getConfig() as $id => $value) {
110 $_REQUEST[$id] = $value;
113 unset($_REQUEST[$id]);
123 print('<div id="batchedit">');
148 print('<div id="be-messages">');
177 print('<div id="be-totalstats"><div>');
208 print('<div id="be-mainform">');
212 print('<div id="be-editboxes">');
233 print('<div id="be-submitbar">');
238 print('<div id="be-progressbar">');
239 print('<div id="be-progresswrap"><div id="be-progress"></div></div>');
259 foreach ($langIds as $id) {
260 $lang[$id] = $this->getLang($id);
270 private function printApplyCheckBox($id, $label, $title, $checked = FALSE) {
274 print('<input type="checkbox" id="' . $id . '"' . $checked . ' />');
275 print('<label for="' . $id . '">' . $label . '</label>');
341 $id = $pageId . '#' . $match->getPageOffset();
346 $this->printApplyCheckBox($id, $id, 'ttl_applymatch', $match->isMarked());
353 print('<input type="checkbox" id="' . $id . '" checked="checked" style="display:none;" />');
354 print($id);
447 print('<div id="be-options" style="' . $style . '">');
470 print('<div id="be-extoptions" style="' . $style . '">');
538 $html = '<input type="text" class="be-edit" id="be-' . $name . 'edit"';
567 $html = '<textarea class="be-edit" id="be-' . $name . 'area" name="' . $name . '"';
608 $html = '<input type="checkbox" id="be-' . $name . '" name="' . $name . '" value="on"';
626 $id = $group . $name;
627 $html = '<input type="radio" id="be-' . $id . '" name="' . $group . '" value="' . $name . '"';
636 $this->printLabel($id, $label);
685 private function getLang($id) {
686 $string = $this->plugin->getLang($id);
706 private function getLangPlural($id, $quantity) {
707 $lang = $this->getLang($id . $this->getPluralForm($quantity), $quantity);
713 return $this->getLang($id . '#many', $quantity);
746 private function getSvg($id) {
747 if (!array_key_exists($id, $this->svgCache)) {
748 $this->svgCache[$id] = file_get_contents(DOKU_PLUGIN . 'batchedit/images/' . $id . '.svg');
751 return $this->svgCache[$id];