54ac287fd87fa3a0b2a4059a8ed6497394de1a79
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / field_storage_info.twig
1 /**
2  * Implements hook_field_storage_info().
3  */
4 function {{ machine_name }}_field_storage_info() {
5   return array(
6     'field_sql_storage' => array(
7       'label' => t('Default SQL storage'),
8       'description' => t('Stores fields in the local SQL database, using per-field tables.'),
9       'settings' => array(),
10     ),
11   );
12 }