-
Notifications
You must be signed in to change notification settings - Fork 0
/
ding_wiki.features.inc
66 lines (62 loc) · 1.46 KB
/
ding_wiki.features.inc
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
<?php
/**
* Implementation of hook_ctools_plugin_api().
*/
function ding_wiki_ctools_plugin_api() {
list($module, $api) = func_get_args();
if ($module == "page_manager" && $api == "pages_default") {
return array("version" => 1);
}
elseif ($module == "strongarm" && $api == "strongarm") {
return array("version" => 1);
}
}
/**
* Implementation of hook_imagecache_default_presets().
*/
function ding_wiki_imagecache_default_presets() {
$items = array(
'ding_wiki_thumbnail' => array(
'presetname' => 'ding_wiki_thumbnail',
'actions' => array(
'0' => array(
'weight' => '0',
'module' => 'imagecache',
'action' => 'imagecache_scale_and_crop',
'data' => array(
'width' => '118',
'height' => '88',
),
),
),
),
);
return $items;
}
/**
* Implementation of hook_node_info().
*/
function ding_wiki_node_info() {
$items = array(
'wiki_page' => array(
'name' => t('Wiki page'),
'module' => 'features',
'description' => t('A page where content can be created and edited by all authenticated users wiki style.'),
'has_title' => '1',
'title_label' => t('Title'),
'has_body' => '1',
'body_label' => t('Body'),
'min_word_count' => '0',
'help' => '',
),
);
return $items;
}
/**
* Implementation of hook_views_api().
*/
function ding_wiki_views_api() {
return array(
'api' => '2',
);
}