FINAL suepr merge step : added all modules to this super repos

This commit is contained in:
Bachir Soussi Chiadmi
2015-04-19 16:46:59 +02:00
7585 changed files with 1723356 additions and 18 deletions

View File

@@ -0,0 +1,15 @@
name = Address Field Example
description = Example module for how to implement an addressfield format handler.
core = 7.x
package = Fields
hidden = TRUE
dependencies[] = ctools
dependencies[] = addressfield
; Information added by drupal.org packaging script on 2013-05-07
version = "7.x-1.0-beta4"
core = "7.x"
project = "addressfield"
datestamp = "1367945112"

View File

@@ -0,0 +1,10 @@
<?php
/**
* Implements hook_ctools_plugin_directory().
*/
function addressfield_example_ctools_plugin_directory($module, $plugin) {
if ($module == 'addressfield') {
return 'plugins/' . $plugin;
}
}