Project

General

Profile

Download (3.4 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_TAXON', 'taxon');
10

    
11
define('CDM_WS_NAME_TYPEDESIGNATIONS', 'name/$0/typeDesignations');
12

    
13
define('CDM_WS_PORTAL_TAXON_NAMETYPEDESIGNATIONS', 'portal/taxon/$0/nameTypeDesignations');
14

    
15
define('CDM_WS_PORTAL_TAXON_DESCRIPTIONS', 'portal/taxon/$0/descriptions');
16

    
17
define('CDM_WS_PORTAL_NAME_DESCRIPTIONS', 'portal/name/$0/descriptions');
18

    
19
define('CDM_WS_PORTAL_DESCRIPTION_AREAS_TREE', 'portal/description/$0,$1/namedAreaTree');
20
define('CDM_WS_PORTAL_DESCRIPTION_DISTRIBUTION_TREE', 'portal/description/$0,$1/DistributionTree');
21

    
22
define('CDM_WS_REFERENCE', 'reference');
23

    
24
define('CDM_WS_NOMENCLATURAL_REFERENCE_CITATION', 'reference/$0/nomenclaturalCitation');
25

    
26
define('CDM_WS_REFERENCE_AUTHORTEAM', 'reference/$0/authorTeam');
27

    
28
define('CDM_WS_PORTAL_TAXON_FIND', 'portal/taxon/find');
29

    
30
define('CDM_WS_PORTAL_TAXON', 'portal/taxon');
31

    
32
define('CDM_WS_PORTAL_TAXON_TAXONNODES', 'portal/taxon/$0/taxonNodes');
33

    
34
define('CDM_WS_NAME_NAMECAHE', 'name/$0/nameCache');
35

    
36
define('CDM_WS_PORTAL_TAXON_SYNONYMY', 'portal/taxon/$0/synonymy');
37

    
38
define('CDM_WS_PORTAL_TAXON_RELATIONS', 'portal/taxon/$0/taxonRelationships');
39

    
40
define('CDM_WS_PORTAL_TAXON_NAMERELATIONS', 'portal/taxon/$0/nameRelationships');
41

    
42
define('CDM_WS_PORTAL_TAXON_TO_NAMERELATIONS', 'portal/taxon/$0/toNameRelationships');
43

    
44
define('CDM_WS_PORTAL_TAXON_FROM_NAMERELATIONS', 'portal/taxon/$0/fromNameRelationships');
45

    
46
define('CDM_WS_DESCRIPTIONELEMENT', 'descriptionelement/$0');
47

    
48
define('CDM_WS_PORTAL_DESCRIPTIONELEMENT', 'portal/descriptionelement/$0');
49

    
50

    
51
/**
52
 * @parameters $0 : the taxon uuid
53
 *
54
 * @returns the taxon which is the accepted synonym for the taxon given as
55
 * parameter taxonUuid. If the taxon specified by taxonUuid is itself the
56
 * accepted taxon, this one will be returned.
57
 */
58
define('CDM_WS_PORTAL_TAXON_ACCEPTED', 'portal/taxon/$0/accepted');
59

    
60
define('CDM_WS_PORTAL_TAXON_MEDIA', 'portal/taxon/$0/media/$1/$2');
61
define('CDM_WS_PORTAL_TAXON_SUBTREE_MEDIA', 'portal/taxon/$0/subtree/media/$1/$2');
62

    
63
/**
64
 *
65
 * Gets the root nodes of the taxonomic concept tree for the concept
66
 * reference specified by the secUuid parameter.
67
 *
68
 * stub: treenode_root
69
 */
70
define('CDM_WS_PORTAL_TAXONOMY',  'portal/taxontree/');
71

    
72
define('CDM_WS_PORTAL_TAXONOMY_CHILDNODES',  'portal/taxontree/$0/childNodes/');
73

    
74
define('CDM_WS_PORTAL_TAXONOMY_CHILDNODES_AT_RANK',  'portal/taxontree/$0/childNodesAt/$1/');
75

    
76
define('CDM_WS_PORTAL_TAXONOMY_CHILDNODES_OF_TAXON',  'portal/taxontree/$0/childNodesOf/$1/');
77

    
78
define('CDM_WS_PORTAL_TAXONOMY_PATH_FROM',  'portal/taxontree/$0/pathFrom/$1');
79

    
80
define('CDM_WS_PORTAL_TAXONOMY_PATH_FROM_TO_RANK',  'portal/taxontree/$0/pathFrom/$1/toRank/$2');
81

    
82

    
83
define('CDM_WS_PORTAL_TAXONOMY_MEDIA', 'portal/taxontree/$0/$1');
84

    
85
define('CDM_WS_TERMVOCABULARY', 'term/$0');
86

    
87
define('CDM_WS_TERM_COMPARE', 'term/$0/compareTo/$1');
88

    
89
define('CDM_WS_TDWG_LEVEL', 'term/tdwg/$0');
90

    
91
/**
92
 * returns FeatureTrees that are stored in this community store
93
 *
94
 */
95
define('CDM_WS_FEATURETREE', 'featuretree/$0');
96

    
97
//define('CDM_WS_FEATURETREE_CHILDREN', 'featuretree/$0/children');
98

    
99
define('CDM_WS_FEATURETREES', 'featuretree');
100

    
101
define('CDM_WS_GEOSERVICE_DISTRIBUTIONMAP', 'geo/map/distribution/$0');
102

    
103
define('CDM_WS_DERIVEDUNIT_FACADE', 'derivedunitfacade/$0');
(8-8/9)