diff options
author | Egor <egor.26.93@gmail.com> | 2015-06-12 16:06:06 +0300 |
---|---|---|
committer | Egor <egor.26.93@gmail.com> | 2015-06-12 16:06:06 +0300 |
commit | 9abd184a386a2594398df9f5cd7bd6d5b9c240fc (patch) | |
tree | 6b237196dd4ae8bdee61093308f5c3dcdcc5c79e /codebase/Dhtmlx/Connector/Event | |
parent | 5fbd0adda5155853e86001fad4c571008f09f01b (diff) | |
download | connector-php-9abd184a386a2594398df9f5cd7bd6d5b9c240fc.zip connector-php-9abd184a386a2594398df9f5cd7bd6d5b9c240fc.tar.gz connector-php-9abd184a386a2594398df9f5cd7bd6d5b9c240fc.tar.bz2 |
Updated structure. Added connectors.
Diffstat (limited to 'codebase/Dhtmlx/Connector/Event')
-rw-r--r-- | codebase/Dhtmlx/Connector/Event/EventInterface.php | 2 | ||||
-rw-r--r-- | codebase/Dhtmlx/Connector/Event/FilterInterface.php | 3 | ||||
-rw-r--r-- | codebase/Dhtmlx/Connector/Event/SortInterface.php | 3 |
3 files changed, 3 insertions, 5 deletions
diff --git a/codebase/Dhtmlx/Connector/Event/EventInterface.php b/codebase/Dhtmlx/Connector/Event/EventInterface.php index b2503fe..60cabf1 100644 --- a/codebase/Dhtmlx/Connector/Event/EventInterface.php +++ b/codebase/Dhtmlx/Connector/Event/EventInterface.php @@ -1,7 +1,7 @@ <?php namespace Dhtmlx\Connector\Event; -class EventInterface{ +class EventInterface { protected $request; ////!< DataRequestConfig instance public $rules=array(); //!< array of sorting rules diff --git a/codebase/Dhtmlx/Connector/Event/FilterInterface.php b/codebase/Dhtmlx/Connector/Event/FilterInterface.php index 5be8516..89a257a 100644 --- a/codebase/Dhtmlx/Connector/Event/FilterInterface.php +++ b/codebase/Dhtmlx/Connector/Event/FilterInterface.php @@ -1,10 +1,9 @@ <?php - namespace Dhtmlx\Connector\Event; /*! Wrapper for collection of filtering rules **/ -class FilterInterface extends EventInterface{ +class FilterInterface extends EventInterface { /*! constructor creates a new interface based on existing request @param request diff --git a/codebase/Dhtmlx/Connector/Event/SortInterface.php b/codebase/Dhtmlx/Connector/Event/SortInterface.php index f2090eb..7a2b92e 100644 --- a/codebase/Dhtmlx/Connector/Event/SortInterface.php +++ b/codebase/Dhtmlx/Connector/Event/SortInterface.php @@ -1,8 +1,7 @@ <?php - namespace Dhtmlx\Connector\Event; -class SortInterface extends EventInterface{ +class SortInterface extends EventInterface { /*! constructor creates a new interface based on existing request @param request |