Maintainers monitor issues, but fast responses are not guaranteed.

Commerce SP Paymill

This module provides a Paymill recurring subscriptions integration for the Commerce subscription product module.

Simple Page Demo

This project demonstrates how to create a simple page with a Drupal module quickly. It has the following 4 files:

1. simple_page_demo.info - Necessary information of the module.
2. simple_page_demo.module - PHP code.
3. simple_page_1.tpl.php - HTML template for demo page 1.
4. simple_page_2.tpl.php - HTML template for demo page 2.

Enable this module, and demo pages are avaialble at:
http://hostname/demo/simple_page_1
http://hostname/demo/simple_page_2

Basically it uses the hook_menu and hook_theme APIs, code logic can go into the simple_page_1_callback function, while the HTML tags can go into simple_page_1.tpl.php file.

simple_page_2 is especially a demo of page without theme.

Hopes it helps newbies like me in learning Drupal!

Here is the code in simple_page_demo.module:
<?php
/**
* @file
* Create simple pages within this module.
*/

/**
* Implements hook_theme().
*/
function simple_page_demo_theme() {
return array(
'simple_page_1' => array(
'variables' => array(),
'path' => drupal_get_path('module', 'simple_page_demo'),
'template' => 'simple_page_1',
),
'simple_page_2' => array(
'variables' => array(),
'path' => drupal_get_path('module', 'simple_page_demo'),
'template' => 'simple_page_2',
),

Local Tasks as Menu

Allows an admin to shift certain 'local task' tabs into proper menu structure.

This allows for more control of positioning and theming, as well as order
and label management.

Initially, this can be used to promote 'tabs 'on user account pages
(under /user/* ) into the 'user-menu'.

Additional parts of the admin interface that use MENU_LOCAL_TASK can also
be promoted, though some custom paths may need additional work to support.

Usage

-------------

When first installed, the 'user' local tabs will be shifted into the user-menu
where they can then be managed.

When this happens the menu paths (eg user/{uid}/edit) continue to work, but
they will no longer show up as 'local tabs'. Instead, you MUST now display the
'user-menu' as a block somewhere in your theme regions.
You can manage the items and theming from then on as normal.

Enabling this module WITHOUT then showing the target menu block may make
some functionality inaccessible.

Configuration

-------------

To add more local tabs to the world of full menu items, the variable
local_tasks_as_menu_rewrites
Should be set.

This can be done in settings.php $conf values, eg:

$conf['local_tasks_as_menu_rewrites']['node/%node/'] = array(
'path-replacement' => 'node/%node_nid_optional/',
'type' => MENU_NORMAL_ITEM,
);

Features Items Template

This module will provide the underpins to allow modules to create a template of a features export (such as a field instance) using features and then have that template be used on multiple items ins

CHEE

CHEE stands for Code Highlights EpicEditor.

Firebase

Firebase integration with Drupal, to provide realtime in-browser updates to the site users.

Pages

Subscribe with RSS Subscribe to RSS - Minimally maintained