123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?php
- function materio_flag_install() {
-
- }
- function materio_flag_enable() {
-
- include_once(drupal_get_path('module', 'flag') . '/flag.module');
- if (!flag_get_flags()) {
-
-
-
- $flag = flag_flag::factory_by_entity_type('node');
- $configuration = array(
- 'name' => 'bookmarks',
- 'global' => 0,
- 'show_on_page' => 1,
- 'show_on_teaser' => 0,
- 'show_on_form' => 0,
-
-
-
- 'title' => 'Bookmarks',
- 'flag_short' => 'Bookmark this',
- 'flag_long' => 'Add this post to your bookmarks',
- 'flag_message' => 'This post has been added to your bookmarks',
- 'unflag_short' => 'Unbookmark this',
- 'unflag_long' => 'Remove this post from your bookmarks',
- 'unflag_message' => 'This post has been removed from your bookmarks',
- 'types' => _materio_flag_install_get_suggested_node_types(),
- );
- $flag->form_input($configuration);
- $flag->save();
-
- drupal_static_reset('flag_get_flags');
-
- $permissions = array('flag bookmarks', 'unflag bookmarks');
- user_role_grant_permissions(DRUPAL_AUTHENTICATED_RID, $permissions);
- }
- }
- function _materio_flag_install_get_suggested_node_types() {
- $preferred = array('page', 'article', 'story', 'forum', 'blog');
- $existing = array_intersect($preferred, array_keys(node_type_get_types()));
- if (!$existing) {
-
- return array($preferred[0]);
- }
- return $existing;
- }
|