Maintainers monitor issues, but fast responses are not guaranteed.

Field validation deprecated

This module contains deprecated validators for field validation 2.x
Following validators deprecated.

Data Adapter API

Data adapter API module provides an abstract interface much like an Object Relation Mappers for Drupal module developer. The project is developed for Drupal 6 and inspired by Drupal 7 Database access layer. It need more refinements as it was build on base of initial requirements.

NOTE: The documentation is still incomplete and project has no current activity.

Load data access layer adapter

<?php
$node = get_data_adapter('database_table', 'table_alias', 'database_connection_name');
?>

Get SQL Query

<?php
$result = $node->fields(array('nid', 'title'))->conditions(array('nid'=>1, 'title' => array('adopt%', 'LIKE')),30,0)->sort(array('`nid` ASC'))->joins(
            'left', 
            array(
                'table' => array('node_revisions', 'nr'),
                'map' => array('nid', 'nid'),
                'fields' => array('body'),
                ))->get_select_query();
?>

Dynamic function

<?php
$node->load_by_nid(1487);
?>

Select Query
<?php
$result = $node->fields(array('nid', 'title'))->conditions(array('nid'=>1, 'title' => array('adopt%', 'LIKE')),30,0)->sort(array('`nid` ASC'))->joins(
'left',
array(

ganttView

Image of the ganttview views style plugin

This is a project implementing the jquery.ganttView library as a views style plugin.

Commerce Add To Cart Filter

This module provides a simple text filter which can be used to provide Drupal Commerce "Add to cart" buttons within your node content.

Pages

Subscribe with RSS Subscribe to RSS - Minimally maintained