Project

General

Profile

Download (2.18 KB) Statistics
| Branch: | Tag: | Revision:
1
<?php
2

    
3
define('CDM_WS_PORTAL_MEDIA', 'portal/media');
4

    
5
define('CDM_WS_MEDIA_METADATA', 'media/$0/metadata');
6

    
7
define('CDM_WS_NAME', 'name');
8

    
9
define('CDM_WS_NAME_TYPEDESIGNATIONS', 'name/$0/typeDesignations');
10

    
11
define('CDM_WS_PORTAL_TAXON_NAMETYPEDESIGNATIONS', 'portal/taxon/$0/nameTypeDesignations');
12

    
13
define('CDM_WS_PORTAL_TAXON_DESCRIPTIONS', 'portal/taxon/$0/descriptions');
14

    
15
define('CDM_WS_PORTAL_NAME_DESCRIPTIONS', 'portal/name/$0/descriptions');
16

    
17
define('CDM_WS_REFERENCE', 'reference');
18

    
19
define('CDM_WS_NOMENCLATURAL_REFERENCE_CITATION', 'reference/$0/nomenclaturalCitation');
20

    
21
define('CDM_WS_PORTAL_TAXON_FIND', 'portal/taxon/find');
22

    
23
define('CDM_WS_PORTAL_TAXON', 'portal/taxon');
24

    
25
define('CDM_WS_PORTAL_TAXON', 'portal/taxon');
26

    
27
define('CDM_WS_NAME_NAMECAHE', 'name/$0/nameCache');
28

    
29
define('CDM_WS_PORTAL_TAXON_SYNONYMY', 'portal/taxon/$0/synonymy');
30

    
31
define('CDM_WS_PORTAL_TAXON_RELATIONS', 'portal/taxon/$0/taxonRelationships');
32

    
33
define('CDM_WS_PORTAL_TAXON_NAMERELATIONS', 'portal/taxon/$0/nameRelationships');
34

    
35

    
36
/**
37
 * @parameters $0 : the taxon uuid
38
 *
39
 * @returns the taxon which is the accepted synonym for the taxon given as
40
 * parameter taxonUuid. If the taxon specified by taxonUuid is itself the
41
 * accepted taxon, this one will be returned.
42
 */
43
define('CDM_WS_PORTAL_TAXON_ACCEPTED', 'portal/taxon/$0/accepted');
44

    
45
define('CDM_WS_PORTAL_TAXON_MEDIA', 'portal/taxon/$0/media/$1/$2');
46
define('CDM_WS_PORTAL_TAXON_SUBTREE_MEDIA', 'portal/taxon/$0/subtree/media/$1/$2');
47

    
48
/**
49
 *
50
 * Gets the root nodes of the taxonomic concept tree for the concept
51
 * reference specified by the secUuid parameter.
52
 *
53
 * stub: treenode_root
54
 */
55
define('CDM_WS_PORTAL_TAXONOMY',  'portal/taxontree');
56

    
57
define('CDM_WS_PORTAL_TAXONOMY_MEDIA', 'portal/taxontree/$0/$1');
58

    
59
define('CDM_WS_TERMVOCABULARY', 'term/$0');
60

    
61
define('CDM_WS_TERM_COMPARE', 'term/$0/compareTo/$1');
62

    
63
define('CDM_WS_TDWG_LEVEL', 'term/tdwg/$0');
64

    
65
/**
66
 * returns FeatureTrees that are stored in this community store
67
 *
68
 */
69
define('CDM_WS_FEATURETREE', 'featuretree/$0');
70

    
71
define('CDM_WS_FEATURETREES', 'featuretree');
72

    
73
define('CDM_WS_GEOSERVICE_DISTRIBUTIONMAP', 'geo/map/distribution/$0');
(8-8/9)