From 1b23600f24f336f44f561592ac9cc5cc7cdd267c Mon Sep 17 00:00:00 2001 From: Dries Date: Wed, 5 Mar 2014 14:53:44 -0500 Subject: [PATCH] Issue #2208669 by andrei.dincu | Berdir: Remove book_library_info(). --- core/modules/book/book.module | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/core/modules/book/book.module b/core/modules/book/book.module index 317a8853d0a..29b7460cc8c 100644 --- a/core/modules/book/book.module +++ b/core/modules/book/book.module @@ -776,23 +776,3 @@ function book_node_type_update(NodeTypeInterface $type) { $config->save(); } } - -/** - * Implements hook_library_info(). - */ -function book_library_info() { - $libraries['drupal.book'] = array( - 'title' => 'Book', - 'version' => \Drupal::VERSION, - 'js' => array( - drupal_get_path('module', 'book') . '/book.js' => array(), - ), - 'dependencies' => array( - array('system', 'jquery'), - array('system', 'drupal'), - array('system', 'drupal.form'), - ), - ); - - return $libraries; -}