initial commit of starter install drupal 7

This commit is contained in:
Bachir Soussi Chiadmi
2015-02-21 17:21:40 +01:00
commit eeba51cea6
6113 changed files with 1249218 additions and 0 deletions
@@ -0,0 +1,20 @@
<?php
/**
* @file
* Administrative functions and forms for mpac.module.
*/
function mpac_settings_form() {
$form = array();
$form['mpac_max_items'] = array(
'#type' => 'select',
'#title' => t('Maximum number of items'),
'#description' => t('Select the maximum number of items in an autocomplete popup provided by mpac.'),
'#default_value' => variable_get('mpac_max_items', 20),
'#options' => drupal_map_assoc(array(10, 20, 50, 100)),
);
return system_settings_form($form);
}