Subversion Repositories eFlore/Applications.del

Rev

Rev 1661 | Rev 1820 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1661 Rev 1795
Line 1... Line 1...
1
<?php
1
<?php
2
/**
2
/**
3
* Description :
-
 
4
* Classe principale de chargement des services de syndication
3
 * Classe principale de chargement des sous-services de syndication.
5
*
4
 *
6
* Encodage en entrée : utf8
5
 * @category   DEL
7
* Encodage en sortie : utf8
6
 * @package    Services
8
* @package del-service
7
 * @subpackage Syndication
-
 
8
 * @version    0.1
-
 
9
 * @author     Mathias CHOUET <mathias@tela-botanica.org>
-
 
10
 * @author     Jean-Pascal MILCENT <jpm@tela-botanica.org>
9
* @author Aurélien PERONNET <aurelien@tela-botanica.org>
11
 * @author     Aurelien PERONNET <aurelien@tela-botanica.org>
10
* @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
12
 * @license    GPL v3 <http://www.gnu.org/licenses/gpl.txt>
11
* @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
13
 * @license    CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
12
* @version 0.1
-
 
13
* @copyright 1999-2011 Tela Botanica (accueil@tela-botanica.org)
14
 * @copyright  1999-2014 Tela Botanica <accueil@tela-botanica.org>
14
*/
15
*/
15
class Syndication extends RestService {
16
class Syndication extends RestService {
Line 16... Line 17...
16
 
17
 
17
	private $parametres = array();
18
	private $parametres = array();
Line 165... Line 166...
165
			default:
166
			default:
166
				$mime = 'text/html';
167
				$mime = 'text/html';
167
		}
168
		}
168
		return $mime;
169
		return $mime;
169
	}
170
	}
170
}
-
 
171
?>
-
 
172
171
}
-
 
172
173
173