| Conditions | 4 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 38 | public function validate($validator) |
||
| 39 | { |
||
| 40 | if ($this->limitedToOptions && $this->value && ! isset($this->source[$this->value])) { |
||
| 41 | $validator->validationError( |
||
| 42 | $this->name, |
||
| 43 | 'Please selected from suggested options only', |
||
| 44 | 'validation' |
||
| 45 | ); |
||
| 46 | |||
| 47 | return false; |
||
| 48 | } |
||
| 49 | |||
| 50 | return true; |
||
| 51 | } |
||
| 70 |