]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - extlib/libomb/xrds_mapper.php
Merge remote branch 'statusnet/0.8.x' into 0.9.x
[quix0rs-gnu-social.git] / extlib / libomb / xrds_mapper.php
1 <?php
2 /**
3  * Map XRDS actions to URLs
4  *
5  * This interface specifies classes which write the XRDS file announcing
6  * the OMB server. An instance of an implementing class should be passed to
7  * OMB_Service_Provider->writeXRDS.
8  *
9  * PHP version 5
10  *
11  * LICENSE: This program is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Affero General Public License as published by
13  * the Free Software Foundation, either version 3 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU Affero General Public License for more details.
20  *
21  * You should have received a copy of the GNU Affero General Public License
22  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
23  *
24  * @package   OMB
25  * @author    Adrian Lang <mail@adrianlang.de>
26  * @copyright 2009 Adrian Lang
27  * @license   http://www.gnu.org/licenses/agpl.html GNU AGPL 3.0
28  **/
29
30 interface OMB_XRDS_Mapper {
31   public function getURL($action);
32 }
33 ?>