source: trunk/zpush/lib/syncobjects/syncdeviceinformation.php @ 7589

Revision 7589, 3.9 KB checked in by douglas, 11 years ago (diff)

Ticket #3209 - Integrar módulo de sincronização Z-push ao Expresso

Line 
1<?php
2/***********************************************
3* File      :   syncdeviceinformation.php
4* Project   :   Z-Push
5* Descr     :   WBXML appointment entities that can be
6*               parsed directly (as a stream) from WBXML.
7*               It is automatically decoded
8*               according to $mapping,
9*               and the Sync WBXML mappings
10*
11* Created   :   08.11.2011
12*
13* Copyright 2007 - 2012 Zarafa Deutschland GmbH
14*
15* This program is free software: you can redistribute it and/or modify
16* it under the terms of the GNU Affero General Public License, version 3,
17* as published by the Free Software Foundation with the following additional
18* term according to sec. 7:
19*
20* According to sec. 7 of the GNU Affero General Public License, version 3,
21* the terms of the AGPL are supplemented with the following terms:
22*
23* "Zarafa" is a registered trademark of Zarafa B.V.
24* "Z-Push" is a registered trademark of Zarafa Deutschland GmbH
25* The licensing of the Program under the AGPL does not imply a trademark license.
26* Therefore any rights, title and interest in our trademarks remain entirely with us.
27*
28* However, if you propagate an unmodified version of the Program you are
29* allowed to use the term "Z-Push" to indicate that you distribute the Program.
30* Furthermore you may use our trademarks where it is necessary to indicate
31* the intended purpose of a product or service provided you use it in accordance
32* with honest practices in industrial or commercial matters.
33* If you want to propagate modified versions of the Program under the name "Z-Push",
34* you may only do so if you have a written permission by Zarafa Deutschland GmbH
35* (to acquire a permission please contact Zarafa at trademark@zarafa.com).
36*
37* This program is distributed in the hope that it will be useful,
38* but WITHOUT ANY WARRANTY; without even the implied warranty of
39* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
40* GNU Affero General Public License for more details.
41*
42* You should have received a copy of the GNU Affero General Public License
43* along with this program.  If not, see <http://www.gnu.org/licenses/>.
44*
45* Consult LICENSE file for details
46************************************************/
47
48class SyncDeviceInformation extends SyncObject {
49    public $model;
50    public $imei;
51    public $friendlyname;
52    public $os;
53    public $oslanguage;
54    public $phonenumber;
55    public $useragent; //12.1 &14.0
56    public $mobileoperator; //14.0
57    public $enableoutboundsms; //14.0
58    public $Status;
59
60    public function SyncDeviceInformation() {
61        $mapping = array (
62            SYNC_SETTINGS_MODEL                         => array (  self::STREAMER_VAR      => "model"),
63            SYNC_SETTINGS_IMEI                          => array (  self::STREAMER_VAR      => "imei"),
64            SYNC_SETTINGS_FRIENDLYNAME                  => array (  self::STREAMER_VAR      => "friendlyname"),
65            SYNC_SETTINGS_OS                            => array (  self::STREAMER_VAR      => "os"),
66            SYNC_SETTINGS_OSLANGUAGE                    => array (  self::STREAMER_VAR      => "oslanguage"),
67            SYNC_SETTINGS_PHONENUMBER                   => array (  self::STREAMER_VAR      => "phonenumber"),
68
69            SYNC_SETTINGS_PROP_STATUS                   => array (  self::STREAMER_VAR      => "Status",
70                                                                    self::STREAMER_TYPE     => self::STREAMER_TYPE_IGNORE)
71        );
72
73        if (Request::GetProtocolVersion() >= 12.1) {
74            $mapping[SYNC_SETTINGS_USERAGENT]           = array (   self::STREAMER_VAR       => "useragent");
75        }
76
77        if (Request::GetProtocolVersion() >= 14.0) {
78            $mapping[SYNC_SETTINGS_MOBILEOPERATOR]      = array (   self::STREAMER_VAR       => "mobileoperator");
79            $mapping[SYNC_SETTINGS_ENABLEOUTBOUNDSMS]   = array (   self::STREAMER_VAR       => "enableoutboundsms");
80        }
81
82        parent::SyncObject($mapping);
83    }
84}
85?>
Note: See TracBrowser for help on using the repository browser.