You are here

README.txt in Book made simple 7.3

Same filename and directory in other branches
  1. 6.3 README.txt
= Installation =

  # Extract du zip file in the modules directory 
  # Enable the module in the admin settings

= Configuration =

  # Go to Book Made Simple settings and :
	- Select content types that will populate the child drop down list in book links.
	- Select content types to auto create main book page when creating. 
  # Or edit a content type and check or uncheck Auto create book main page and Allow content type as child of book

= Migration from old BookMadeSimple module

  # disable old BookMadeSimple module
  # remove BookMadeSimple directory
  # install new Book Made Simple module
  # enable Book Made Simple module

= Use =

This module will create a main book page for content type selected in BookMadeSimple settings. This is a shortcut to create a node and click on Update book outline.

A dropdown listbox will be add in books links. Selecting a content type will add it as a child page of the book page.

= Tips =

To hide standard Add child page on links, add this line in your css file : 

	li.book_add_child a{display:none;}

To place dropdown listbox top of links, add this lines in your template.php file : 

	function <your template>_links($links, $attributes = array('class' => 'links')) {
		if (array_key_exists("book_made_simple",$links)) {
			$a = $links["book_made_simple"];
			unset($links["book_made_simple"]);
			array_unshift($links,$a);
		}
		return theme_links($links, $attributes = array('class' => 'links'));
	}

= Permissions =
BMS has two user permissions :

   # Show reoder book link : Visibility of the Reorder book link
   # Hide core outline links : Hide or show the core outline links of the book module.
 

File

README.txt
View source
  1. = Installation =
  2. # Extract du zip file in the modules directory
  3. # Enable the module in the admin settings
  4. = Configuration =
  5. # Go to Book Made Simple settings and :
  6. - Select content types that will populate the child drop down list in book links.
  7. - Select content types to auto create main book page when creating.
  8. # Or edit a content type and check or uncheck Auto create book main page and Allow content type as child of book
  9. = Migration from old BookMadeSimple module
  10. # disable old BookMadeSimple module
  11. # remove BookMadeSimple directory
  12. # install new Book Made Simple module
  13. # enable Book Made Simple module
  14. = Use =
  15. This module will create a main book page for content type selected in BookMadeSimple settings. This is a shortcut to create a node and click on Update book outline.
  16. A dropdown listbox will be add in books links. Selecting a content type will add it as a child page of the book page.
  17. = Tips =
  18. To hide standard Add child page on links, add this line in your css file :
  19. li.book_add_child a{display:none;}
  20. To place dropdown listbox top of links, add this lines in your template.php file :
  21. function _links($links, $attributes = array('class' => 'links')) {
  22. if (array_key_exists("book_made_simple",$links)) {
  23. $a = $links["book_made_simple"];
  24. unset($links["book_made_simple"]);
  25. array_unshift($links,$a);
  26. }
  27. return theme_links($links, $attributes = array('class' => 'links'));
  28. }
  29. = Permissions =
  30. BMS has two user permissions :
  31. # Show reoder book link : Visibility of the Reorder book link
  32. # Hide core outline links : Hide or show the core outline links of the book module.