Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
Sandbox for my new Skinr based skins module - this is where I will be migrating most of the style theme settings in my current themes, so I can reduce code duplication and make these publicly avail
Using this module, administrator can integrate Drupal with LimeSurvey,an open source powerful feature packed survey tool, which gives the capability of importing users from Drupal to LimeSurvey and
This is an API for creating book content outlines. It's similar to the Skeleton module in that it seeks to make outlines reusable but differs in that it's completely for developers. For examples on how to implement this see the ELMS distribution (see elms_id_best_practices and elms_content for complex examples in particular). Right now this is used for course outlines but is generalized to allow for the rapid creation of any outline. Below you will see the API.txt file for how you can implement and modify outlines defined by other projects.
Here is the basic structure:
$outline['YOUR_TEMPLATE_MACHINE_NAME'] = array(
'title' => 'YOUR TEMPLATE NAME',
array(
'type' => '',
'title' => '',
'content => '', //optional body content
'format' => '', //optional text input format
'duplicate' => TRUE //or number of times to replicate,
'children' => array(
//SAME STRUCTURE AS ABOVE NOW
)
));
--Acceptable values for type, any kind of content type
--@i can be used in the title of something that's going to be duplicated as to where the incemental value should be placed. This is not required.
--duplicate: number of times to duplicate, the loop value can be altered based on criteria, see hook_book_outline_builder_loop_alter.