Esempio n. 1
0
 public function itDoesNotValidateNotWellFormedValue()
 {
     $value = '2014/09/03';
     $this->assertFalse($this->date_formatter->validate($value));
 }
 private function formatDateForReport($criteria_value)
 {
     $date_formatter = new Tracker_FormElement_DateFormatter($this);
     return $date_formatter->formatDate($criteria_value);
 }
 public function __construct(Tracker_FormElement_Field_Date $field)
 {
     parent::__construct($field);
 }