added footer menu, insert module, image field to page

This commit is contained in:
2017-02-24 17:00:41 +01:00
parent 65f6be158a
commit fc8070a669
27 changed files with 1750 additions and 65 deletions
@@ -0,0 +1,21 @@
<?php
/**
* @file
* Insert support for File module.
*/
/**
* Implementation of hook_insert_widgets().
*/
function file_insert_widgets() {
return array(
'file_generic' => array(
'element_type' => 'managed_file',
'wrapper' => '.file-widget',
'fields' => array(
'description' => 'input[name$="[description]"]',
),
),
);
}