summaryrefslogtreecommitdiff
path: root/devlet_l10n.features.inc
diff options
context:
space:
mode:
Diffstat (limited to 'devlet_l10n.features.inc')
-rw-r--r--devlet_l10n.features.inc11
1 files changed, 11 insertions, 0 deletions
diff --git a/devlet_l10n.features.inc b/devlet_l10n.features.inc
new file mode 100644
index 0000000..22507a1
--- /dev/null
+++ b/devlet_l10n.features.inc
@@ -0,0 +1,11 @@
+<?php
+
+/**
+ * Implementation of hook_ctools_plugin_api().
+ */
+function devlet_l10n_ctools_plugin_api() {
+ list($module, $api) = func_get_args();
+ if ($module == "strongarm" && $api == "strongarm") {
+ return array("version" => 1);
+ }
+}