first global commit

This commit is contained in:
2020-09-23 15:50:29 +02:00
commit 78adf3a099
6052 changed files with 1221183 additions and 0 deletions
@@ -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"
@@ -0,0 +1,10 @@
<?php
/**
* Implements hook_ctools_plugin_directory().
*/
function addressfield_example_ctools_plugin_directory($module, $plugin) {
if ($module == 'addressfield') {
return 'plugins/' . $plugin;
}
}