Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / search_info.twig
diff --git a/vendor/chi-teck/drupal-code-generator/templates/d7/hook/search_info.twig b/vendor/chi-teck/drupal-code-generator/templates/d7/hook/search_info.twig
new file mode 100644 (file)
index 0000000..e4e0c3c
--- /dev/null
@@ -0,0 +1,13 @@
+/**
+ * Implements hook_search_info().
+ */
+function {{ machine_name }}_search_info() {
+  // Make the title translatable.
+  t('Content');
+
+  return array(
+    'title' => 'Content',
+    'path' => 'node',
+    'conditions_callback' => 'callback_search_conditions',
+  );
+}