Lines Matching refs:input

466 		$input = base64_decode($this->session->getVar("cite_pageFormat"));
468 "cite_pageFormat", $example, $input, 3);
575 $input = $this->session->getVar("style_shortName");
578 "styleShortName", $input, 20, 255) . " " . MISC::span('*', 'required') .
582 FORM::hidden("styleShortName", $input) .
587 "styleShortName", $input, 20, 255) . " " . MISC::span('*', 'required') .
589 $input = base64_decode($this->session->getVar("style_longName"));
591 "styleLongName", $input, 50, 255) . " " . MISC::span('*', 'required'));
777 $input = base64_decode($this->session->getVar("style_titleCapitalization"));
779 FORM::selectedBoxValue(FALSE, "style_titleCapitalization", $example, $input, 2));
781 $input = base64_decode($this->session->getVar("style_editionFormat"));
783 FORM::selectedBoxValue(FALSE, "style_editionFormat", $example, $input, 2));
785 $input = base64_decode($this->session->getVar("style_pageFormat"));
787 FORM::selectedBoxValue(FALSE, "style_pageFormat", $example, $input, 3));
795 $input = base64_decode($this->session->getVar("style_dayFormat"));
797 FORM::selectedBoxValue(FALSE, "style_dayFormat", $example, $input, 2));
799 $input = base64_decode($this->session->getVar("style_monthFormat"));
801 FORM::selectedBoxValue(FALSE, "style_monthFormat", $example, $input, 3));
803 $input = base64_decode($this->session->getVar("style_dateFormat"));
805 FORM::selectedBoxValue(FALSE, "style_dateFormat", $example, $input, 2));
807 $input = base64_decode($this->session->getVar("style_runningTimeFormat"));
809 FORM::selectedBoxValue(FALSE, "style_runningTimeFormat", $example, $input, 5));
815 $input = base64_decode($this->session->getVar("style_userMonth_$i"));
818 FORM::textInput(FALSE, "style_userMonth_$i", $input, 15, 255);
821 FORM::textInput(FALSE, "style_userMonth_$i", $input, 15, 255);
834 $input = base64_decode($this->session->getVar("style_dateRangeDelimit1"));
836 "style_dateRangeDelimit1", $input, 6, 255));
837 $input = base64_decode($this->session->getVar("style_dateRangeDelimit2"));
839 "style_dateRangeDelimit2", $input, 6, 255));
840 $input = base64_decode($this->session->getVar("style_dateRangeSameMonth"));
844 "style_dateRangeSameMonth", $example, $input, 2));
867 $input = $this->session->issetVar($formElementName) ?
870 $formElementName, $generic, $input, 3);
876 $input = stripslashes(base64_decode($this->session->getVar($keyName)));
878 $keyName, $input, 80, 3) . $required . MISC::br() .
1086 foreach($inputArray as $input)
1088 if(isset($this->vars[$input]))
1090 $split = split("_", $input, 2);
1093 htmlspecialchars(stripslashes($this->vars[$input])) . "</$elementName>";
1124 foreach($inputArray as $input)
1126 if(isset($this->vars[$input]))
1128 $split = split("_", $input, 2);
1131 htmlspecialchars(stripslashes($this->vars[$input])) . "</$elementName>";
1139 $input = trim(stripslashes($this->vars[$type]));
1141 $input = preg_replace("/\r|\n|\015|\012/", "", $input);
1143 $fileString .= $this->arrayToXML($this->parseStringToArray($key, $input), $type);
1226 foreach($array as $input)
1228 if(!isset($this->vars[$input]))
1375 foreach($array as $input)
1377 if(isset($this->vars[$input]))
1378 $this->session->setVar($input, base64_encode($this->vars[$input]));
1380 $this->session->delVar($input);