-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathccrm_case_study.features.inc
More file actions
83 lines (80 loc) · 2.08 KB
/
ccrm_case_study.features.inc
File metadata and controls
83 lines (80 loc) · 2.08 KB
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
<?php
/**
* Implementation of hook_imagecache_default_presets().
*/
function ccrm_case_study_imagecache_default_presets() {
$items = array(
'ccrm_cs_gallery' => array(
'presetname' => 'ccrm_cs_gallery',
'actions' => array(
'0' => array(
'weight' => '0',
'module' => 'imagecache',
'action' => 'imagecache_scale_and_crop',
'data' => array(
'width' => '620',
'height' => '400',
),
),
),
),
'ccrm_cs_logo' => array(
'presetname' => 'ccrm_cs_logo',
'actions' => array(
'0' => array(
'weight' => '0',
'module' => 'imagecache',
'action' => 'imagecache_scale',
'data' => array(
'width' => '200',
'height' => '200',
'upscale' => 0,
),
),
),
),
'ccrm_cs_thumbnail' => array(
'presetname' => 'ccrm_cs_thumbnail',
'actions' => array(
'0' => array(
'weight' => '0',
'module' => 'imagecache',
'action' => 'imagecache_scale_and_crop',
'data' => array(
'width' => '120',
'height' => '120',
),
),
),
),
);
return $items;
}
/**
* Implementation of hook_node_info().
*/
function ccrm_case_study_node_info() {
$items = array(
'ccrm_case_study' => array(
'name' => t('Case Study'),
'module' => 'features',
'description' => t('To best illustrate the power of CiviCRM, we would like to invite you (and your clients) to contribute casestudies to be featured on the CiviCRM Web site.
'),
'has_title' => '1',
'title_label' => t('The name of the organization this case study is about'),
'has_body' => '1',
'body_label' => t('Please describe the organization and summarize how this project successfully met their needs: '),
'min_word_count' => '0',
'help' => '',
),
);
return $items;
}
/**
* Implementation of hook_views_api().
*/
function ccrm_case_study_views_api() {
return array(
'api' => '2',
);
}