]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/YammerImport/classes/Yammer_user.php
Updating all Memcached_DataObject extended classes to Managed_DataObject
[quix0rs-gnu-social.git] / plugins / YammerImport / classes / Yammer_user.php
1 <?php
2 /**
3  * Data class for remembering Yammer import mappings
4  *
5  * PHP version 5
6  *
7  * @category Data
8  * @package  StatusNet
9  * @author   Brion Vibber <brion@status.net>
10  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
11  * @link     http://status.net/
12  *
13  * StatusNet - the distributed open-source microblogging tool
14  * Copyright (C) 2010, StatusNet, Inc.
15  *
16  * This program is free software: you can redistribute it and/or modify
17  * it under the terms of the GNU Affero General Public License as published by
18  * the Free Software Foundation, either version 3 of the License, or
19  * (at your option) any later version.
20  *
21  * This program is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.     See the
24  * GNU Affero General Public License for more details.
25  *
26  * You should have received a copy of the GNU Affero General Public License
27  * along with this program. If not, see <http://www.gnu.org/licenses/>.
28  */
29
30 if (!defined('STATUSNET')) {
31     exit(1);
32 }
33
34 class Yammer_user extends Yammer_common
35 {
36     public $__table = 'yammer_user'; // table name
37     public $__field = 'user_id';     // field to map to
38     public $user_id;                 // int
39
40     /**
41      * Return schema definition to set this table up in onCheckSchema
42      */
43     static function schemaDef()
44     {
45         return self::doSchemaDef('user_id');
46     }
47
48     /**
49      * Save a mapping between a remote Yammer and local imported user.
50      *
51      * @param integer $orig_id ID of the notice in Yammer
52      * @param integer $user_id ID of the status in StatusNet
53      *
54      * @return Yammer_user new object for this value
55      */
56     static function record($orig_id, $user_id)
57     {
58         return self::doRecord('Yammer_user', 'user_id', $orig_id, $user_id);
59     }
60 }