summaryrefslogtreecommitdiff
path: root/sites/default/themes/brdo/theme-settings.php
diff options
context:
space:
mode:
Diffstat (limited to 'sites/default/themes/brdo/theme-settings.php')
-rw-r--r--sites/default/themes/brdo/theme-settings.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/sites/default/themes/brdo/theme-settings.php b/sites/default/themes/brdo/theme-settings.php
new file mode 100644
index 000000000..56ba41445
--- /dev/null
+++ b/sites/default/themes/brdo/theme-settings.php
@@ -0,0 +1,27 @@
+<?php
+/**
+ * Implements hook_form_system_theme_settings_alter().
+ *
+ * @param $form
+ * Nested array of form elements that comprise the form.
+ * @param $form_state
+ * A keyed array containing the current state of the form.
+ */
+function STARTERKIT_form_system_theme_settings_alter(&$form, &$form_state) {
+
+ // Create the form using Forms API: http://api.drupal.org/api/7
+
+ /* -- Delete this line if you want to use this setting
+ $form['STARTERKIT_example'] = array(
+ '#type' => 'checkbox',
+ '#title' => t('STARTERKIT sample setting'),
+ '#default_value' => theme_get_setting('STARTERKIT_example'),
+ '#description' => t("This option doesn't do anything; it's just an example."),
+ );
+ // */
+
+ // Remove some of the base theme's settings.
+ unset($form['themedev']['zen_layout']); // We don't need to select the layout stylesheet.
+
+ // We are editing the $form in place, so we don't need to return anything.
+}