From e5f2384b939387b25e106cf3a69644513db76947 Mon Sep 17 00:00:00 2001 From: Amitaibu Date: Tue, 1 Apr 2014 12:27:46 +0300 Subject: [PATCH] Create only a small set of bundles upon installation. --- biblio.install | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/biblio.install b/biblio.install index 35f3ca09..0af13461 100644 --- a/biblio.install +++ b/biblio.install @@ -15,7 +15,13 @@ function biblio_install() { * Implements hook_enable(). */ function biblio_enable() { - biblio_add_publication_types(); + $types = array( + 'book', + 'journal', + 'presentation', + ); + biblio_add_publication_types($types); + biblio_create_fields_by_bundle($types); } /**