Home
last modified time | relevance | path

Searched refs:rawvalue (Results 26 – 27 of 27) sorted by path

12

/plugin/structprogress/types/
H A DProgress.php29 public function validate($rawvalue) argument
31 $rawvalue = parent::validate($rawvalue);
32 $rawvalue = str_replace(',', '.', $rawvalue); // we accept both
39 if ((string)$rawvalue != (string)floatval($rawvalue)) {
43 if (floatval($rawvalue) < $minvalue) {
47 if ($maxvalue !== 0 && floatval($rawvalue) > $maxvalue) {
51 return $rawvalue;
/plugin/structsection/types/
H A DSection.php25 * @param string $rawvalue
30 public function valueEditor($name, $rawvalue, $htmlID) argument
32 $rawvalue = formText($rawvalue);
41 return "<textarea $attributes>$rawvalue</textarea>";

12