Changeset 6590
- Timestamp:
- 12/19/07 21:07:14 (2 years ago)
- Files:
-
- trunk/lib/form/sfForm.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/form/sfForm.class.php
r6588 r6590 173 173 174 174 /** 175 * Returns a cleaned value176 *177 * If the form is not bound, it will return nul178 *179 * @param string The name of the value required180 * @return string The cleaned value181 */182 public function getValue($key)183 {184 return $this->isBound ? $this->values[$key] : null;185 }186 187 /**188 175 * Gets the error schema associated with the form. 189 176 *

