FINAL suepr merge step : added all modules to this super repos

This commit is contained in:
Bachir Soussi Chiadmi
2015-04-19 16:46:59 +02:00
7585 changed files with 1723356 additions and 18 deletions

View File

@@ -0,0 +1,50 @@
<?php
function cobalt_settings() {
$form = array();
$themes = cobalt_themes();
$theme_options = array();
foreach ($themes as $key => $info) {
$theme_options[$key] = $info['name'];
}
$form['cobalt_theme'] = array(
'#type' => 'select',
'#options' => $theme_options,
'#default_value' => variable_get('cobalt_theme', ''),
'#title' => t('Select a theme for Cobalt'),
);
$form['cobalt_shortcuts'] = array(
'#type' => 'textfield',
'#default_value' => variable_get('cobalt_shortcuts', 'Alt+space, Ctrl+space'),
'#title' => t('Shortcuts for activating cobalt'),
'#description' => t('The shortcuts that can be used to activate Cobalt should be separated by a comma, like this: "Alt+space, Ctrl+space".') . ' ' . l(t('See the live demo for jshotkeys to get some help'), 'http://jshotkeys.googlepages.com/test-static-01.html'),
);
$form['javascript_includes'] = array(
'#type' => 'fieldset',
'#title' => t('Javascript includes'),
'#description' => t('All the following libraries are needed for Cobalt to function properly. These options are here if you need Cobalt to play nice with any other modules or themes that use the same javascript libraries.'),
);
$form['javascript_includes']['cobalt_jquery_hotkeys'] = array(
'#type' => 'checkbox',
'#default_value' => variable_get('cobalt_jquery_hotkeys', 1),
'#title' => t('Include the jQuery Hotkeys plugin'),
);
return system_settings_form($form);
}
function _cobalt_clear_cache() {
drupal_flush_all_caches();
drupal_set_message(t('Cache cleared.'));
drupal_goto();
}
function _cobalt_rebuild_permissions() {
node_access_rebuild();
drupal_goto();
}