From 2f0b89a2d4f49882059481555123d0bddde5699d Mon Sep 17 00:00:00 2001 From: Martin Muzatko Date: Tue, 13 Oct 2015 12:13:17 +0200 Subject: [PATCH] Add advanced Selectors - start and end Offset Modifiers Start and End were missing until now. --- .../InputfieldSelector/InputfieldSelector.module | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/wire/modules/Inputfield/InputfieldSelector/InputfieldSelector.module b/wire/modules/Inputfield/InputfieldSelector/InputfieldSelector.module index 83c42d7a..42bf56f9 100644 --- a/wire/modules/Inputfield/InputfieldSelector/InputfieldSelector.module +++ b/wire/modules/Inputfield/InputfieldSelector/InputfieldSelector.module @@ -494,6 +494,16 @@ class InputfieldSelector extends Inputfield implements ConfigurableModule { 'label' => $this->_('Limit'), 'operators' => array('=') ), + 'start' => array( + 'input' => 'integer', + 'label' => $this->_('Start'), + 'operators' => array('=') + ), + 'end' => array( + 'input' => 'integer', + 'label' => $this->_('End'), + 'operators' => array('=') + ), 'include' => array( 'input' => 'select', 'label' => $this->_('Include'),