]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/YammerImport/classes/Yammer_notice.php
d903b127b596f8d6f047577c5c6d033892b40a99
[quix0rs-gnu-social.git] / plugins / YammerImport / classes / Yammer_notice.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_notice extends Yammer_common
35 {
36     public $__table = 'yammer_notice'; // table name
37     public $__field = 'notice_id';     // field to map to
38     public $notice_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('notice_id');
46     }
47
48     /**
49      * Save a mapping between a remote Yammer and local imported notice.
50      *
51      * @param integer $orig_id ID of the notice in Yammer
52      * @param integer $notice_id ID of the status in StatusNet
53      *
54      * @return Yammer_notice new object for this value
55      */
56     static function record($orig_id, $notice_id)
57     {
58         return self::doRecord('Yammer_notice', 'notice_id', $orig_id, $notice_id);
59     }
60 }