function rex_input_textarea()
 {
     parent::rex_input();
     $this->setAttribute('class', 'rex-form-textarea');
     $this->setAttribute('cols', '50');
     $this->setAttribute('rows', '6');
 }
 function rex_input_time()
 {
     parent::rex_input();
     $this->hourSelect = new rex_select();
     $this->hourSelect->addOptions(range(0, 23), true);
     $this->hourSelect->setSize(1);
     $this->hourSelect->setAttribute('class', 'rex-form-select-date');
     $this->minuteSelect = new rex_select();
     $this->minuteSelect->addOptions(range(0, 59), true);
     $this->minuteSelect->setSize(1);
     $this->minuteSelect->setAttribute('class', 'rex-form-select-date');
 }
 function rex_input_date()
 {
     parent::rex_input();
     $this->yearSelect = new rex_select();
     $this->yearSelect->addOptions(range(2005, date('Y') + 10), true);
     $this->yearSelect->setAttribute('class', 'rex-form-select-year');
     $this->yearSelect->setSize(1);
     $this->monthSelect = new rex_select();
     $this->monthSelect->addOptions(range(1, 12), true);
     $this->monthSelect->setAttribute('class', 'rex-form-select-date');
     $this->monthSelect->setSize(1);
     $this->daySelect = new rex_select();
     $this->daySelect->addOptions(range(1, 31), true);
     $this->daySelect->setAttribute('class', 'rex-form-select-date');
     $this->daySelect->setSize(1);
 }
 function rex_input_medialistbutton()
 {
     parent::rex_input();
     $this->buttonId = '';
 }
 function rex_input_linklistbutton()
 {
     parent::rex_input();
     $this->buttonId = '';
     $this->categoryId = '';
 }
 function rex_input_text()
 {
     parent::rex_input();
     $this->setAttribute('class', 'rex-form-text');
     $this->setAttribute('type', 'text');
 }
 function rex_input_select()
 {
     parent::rex_input();
     $this->select = new rex_select();
     $this->setAttribute('class', 'rex-form-select');
 }
 function rex_input_datetime()
 {
     parent::rex_input();
     $this->dateInput = rex_input::factory('date');
     $this->timeInput = rex_input::factory('time');
 }