Lines Matching refs:value

76 		foreach ($_POST['checklist_data'] as $key => $value) {
78 $this->buildEbene1($value, $footertext);
196 function checkH1($value) { argument
197 $value = str_replace("UNCHECKED", "", $value);
198 if (stristr($value, 'h1_') != "") {
199 $value = "<h1>" . str_replace("h1_", "", strip_tags($value)) . "</h1>";
200 return $value;
205 function checkH2($value) { argument
207 $value = str_replace("UNCHECKED", "", $value);
208 if (stristr($value, 'h2_') != "") {
210 $value = "<h2>" . str_replace("h2_", "", strip_tags($value)) . "</h2>";
213 $value = "<h2 class='first_h2'>" . str_replace("h2_", "", strip_tags($value)) . "</h2>";
215 return $value;
220 function checkH3($value) { argument
222 if (stristr($value, 'h3_') != "") {
225 …$value = "</div><div class='optiongroup'><h3>" . str_replace("h3_", "", strip_tags($value)) . "</h…
228 $value = "<div class='optiongroup'><h3>" . str_replace("h3_", "", strip_tags($value)) . "</h3>";
231 return $value;
236 function checkLI($value) { argument
237 if (stristr($value, 'li_') != "") {
238 …$value = '<div class="checkliste_option"><div class="checkliste_checkbox">&nbsp;</div>&nbsp;' . st…
239 $value = str_replace("EINGABEFELD", $this -> eingabefeld, $value);
240 return $value;
245 function checkP($value) { argument
247 if (stristr($value, 'p_') != "") {
250 …$value = "</div><div class='optiongroup'><p>" . str_replace("p_", "", strip_tags($value)) . "</p>";
253 $value = "<div class='optiongroup'><p>" . str_replace("p_", "", strip_tags($value)) . "</p>";
256 $value = str_replace("EINGABEFELD", $this -> eingabefeld, $value);
257 return $value;