Lines Matching refs:label

270     private function printApplyCheckBox($id, $label, $title, $checked = FALSE) {
275 print('<label for="' . $id . '">' . $label . '</label>');
491 $label = preg_split('/(\{\d\})/', $this->getLang('lbl_matchctx'), -1, PREG_SPLIT_DELIM_CAPTURE);
494 $this->printLabel('matchctx', $label[0]);
495 $this->printEditBox($edits[$label[1]], TRUE, isset($_REQUEST['matchctx']));
496 $this->printLabel('matchctx', $label[2]);
497 $this->printEditBox($edits[$label[3]], TRUE, isset($_REQUEST['matchctx']));
498 $this->printLabel('matchctx', $label[4]);
505 $label = explode('{1}', $this->getLang('lbl_searchlimit'));
507 $this->printLabel('searchlimit', $label[0]);
509 $this->printLabel('searchlimit', $label[1]);
516 $label = explode('{1}', $this->getLang('lbl_keepmarks'));
519 $this->printLabel('keepmarks', $label[0]);
531 $this->printLabel('keepmarks', $label[1]);
607 private function printCheckBox($name, $label) {
617 $this->printLabel($name, $label);
625 private function printRadioButton($group, $name, $label) {
636 $this->printLabel($id, $label);
644 private function printLabel($name, $label) {
645 if (substr($label, 0, 5) == 'print') {
646 $this->$label();
649 if (substr($label, 0, 4) == 'lbl_') {
650 $label = $this->getLang($label);
653 $label = trim($label);
656 if (!empty($label)) {
657 print('<label for="be-' . $name . '">' . $label . '</label>');
665 private function printSubmitButton($name, $label, $enabled = TRUE) {
666 $html = '<input type="submit" class="button be-button be-submit" name="' . $name . '" value="' . $this->getLang($label) . '"';
678 private function printButton($name, $label) {
679 print('<input type="button" class="button be-button" name="' . $name . '" value="' . $this->getLang($label) . '" />');