forked from Islandora/islandora_bookmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathislandora_bookmark.api.php
107 lines (96 loc) · 2.87 KB
/
islandora_bookmark.api.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?php
/**
* @file
* Hooks provided by Islandora Bookmark.
*/
/**
* Hook to collect exports functions available for use.
*
* @return array
* Returns an array with the name of the module and the function name to call
* to handle exportation. In the form of 'module name' => 'export function'.
*/
function hook_islandora_bookmark_export_handler() {
}
/**
* Hook to alter the options returned for exportation.
*
* @return array
* Returns an array with the name of the module and the function name to call
* to handle exportation. In the form of 'module name' => 'export function'.
*/
function hook_islandora_bookmark_export_handler_alter(&$output) {
}
/**
* Hook to generate markup for displaying a Fedora object within a table.
*
* @return array
* Returns an array containing the markup for displaying the Fedora object.
*/
function hook_islandora_bookmark_object_markup($fedora_object, $object_url_info) {
}
/**
* Hook to generate markup for displaying a Fedora object within a table.
*
* Content model specific.
*
* @return array
* Returns an array containing the markup for displaying the Fedora object.
*/
function hook_CMODEL_PID_islandora_bookmark_object_markup($fedora_object, $object_url_info) {
}
/**
* Hook to collect additional style options used in exporting.
*
* @return array
* Returns an array containing the additional styles for export.
*/
function hook_islandora_bookmark_export_styles($option) {
}
/**
* Hook to change or add values to RSS fields.
*
* Sometimes you might want to alter fields for an rss item.
*
* @param AbstractObject $object
* The bookmarked object
*
* @return array
* Returns an array containing the additional changes to the rss item.
*/
function hook_islandora_bookmark_rss_item(AbstractObject $object) {
// Create an associative array for the required elements
// for a valid bookmark RSS item.
$rss_item = array();
// The title of the item.
$rss_item['title'] = 'Altered Title';;
// The link of the item.
$rss_item['link'] = 'Altered Link';
// The description of the item.
$rss_item['description'] = 'Altered description';
// Set the source attribute.
$rss_item['items'] = array(
array(
'key' => 'source',
'value' => 'source value', 'attributes' => array('url' => 'url')),
);
// Return the RSS item.
return $rss_item;
}
/**
* Get the mapping of types so we can instantiate different classes.
*
* The "bookmark" class just saves to the DB... We may want to add in other
* things to occur on different actions, like changing something on an object
* when we add an object to a list.
*
* @return array
* An associative array mapping the "type" column in the
* "islandora_bookmark_list_names" to a class to use to interact with the
* given list.
*/
function hook_islandora_bookmark_database_types() {
return array(
'my_type' => 'my_awesome_bookmark_class',
);
}