Changeset 6588
- Timestamp:
- 12/19/07 18:37:53 (10 months ago)
- Files:
-
- trunk/lib/form/sfForm.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/form/sfForm.class.php
r6326 r6588 173 173 174 174 /** 175 * Returns a cleaned value 176 * 177 * If the form is not bound, it will return nul 178 * 179 * @param string The name of the value required 180 * @return string The cleaned value 181 */ 182 public function getValue($key) 183 { 184 return $this->isBound ? $this->values[$key] : null; 185 } 186 187 /** 175 188 * Gets the error schema associated with the form. 176 189 *