You are here

salvattore.admin.inc in Salvattore (CSS driven Masonry) 8

Same filename and directory in other branches
  1. 7.2 salvattore.admin.inc
  2. 7 salvattore.admin.inc

Provide administration of PACE module.

File

salvattore.admin.inc
View source
<?php

/**
 * @file
 * Provide administration of PACE module.
 */
function salvattore_admin_settings_form() {
  $form = array();

  // @FIXME
  // Could not extract the default value because it is either indeterminate, or
  // not scalar. You'll need to provide a default value in
  // config/install/salvattore.settings.yml and config/schema/salvattore.schema.yml.
  $form['salvattore_use_min_js'] = array(
    '#title' => t('Javascript file to use'),
    '#description' => t('Please choose whether you want the minified or the full version of the JS file.'),
    '#type' => 'radios',
    '#options' => array(
      '1' => 'Minified',
      '0' => 'Full (debug)',
    ),
    '#default_value' => \Drupal::config('salvattore.settings')
      ->get('salvattore_use_min_js'),
  );

  // @FIXME
  // Could not extract the default value because it is either indeterminate, or
  // not scalar. You'll need to provide a default value in
  // config/install/salvattore.settings.yml and config/schema/salvattore.schema.yml.
  $form['salvattore_load_default_css'] = array(
    '#title' => t('Load default CSS'),
    '#description' => t('Salvattore is easily configurable via CSS and you should write your own in your theme.<br>If some reason you want to use the default then enable this setting.'),
    '#type' => 'checkbox',
    '#default_value' => \Drupal::config('salvattore.settings')
      ->get('salvattore_load_default_css'),
  );
  return system_settings_form($form);
}

Functions

Namesort descending Description
salvattore_admin_settings_form @file Provide administration of PACE module.