From 91ace6f8d22cbd1a85a077c14729745a1e33aad9 Mon Sep 17 00:00:00 2001 From: ajshort Date: Sun, 24 Feb 2013 09:51:34 +1100 Subject: [PATCH] Remove unused calendar time field. --- code/CalendarTimeField.php | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100755 code/CalendarTimeField.php diff --git a/code/CalendarTimeField.php b/code/CalendarTimeField.php deleted file mode 100755 index 53eb618..0000000 --- a/code/CalendarTimeField.php +++ /dev/null @@ -1,21 +0,0 @@ - 'text', - 'class' => 'text' . ($this->extraClass() ? $this->extraClass() : ''), - 'id' => $this->id(), - 'name' => $this->Name(), - 'value' => $this->attrValue(), - 'tabindex' => $this->getTabIndex(), - 'maxlength' => ($this->maxLength) ? $this->maxLength : null, - 'size' => ($this->maxLength) ? min( $this->maxLength, 30 ) : null - ); - - if($this->disabled) $attributes['disabled'] = 'disabled'; - - return $this->createTag('input', $attributes); - } -} \ No newline at end of file