JuicerAdminForm.php in Juicer - Social Media Feed Aggregator 8
Contains \Drupal\juicerio\src\Form\JuicerAdminForm.
Namespace
Drupal\juicerio\FormFile
src/Form/JuicerAdminForm.phpView source
<?php
namespace Drupal\juicerio\Form;
/**
* @file
* Contains \Drupal\juicerio\src\Form\JuicerAdminForm.
*/
use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
/**
* Class JuicerAdminForm.
*
* @package Drupal\juicerio\Form
*/
class JuicerAdminForm extends ConfigFormBase {
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'juicer_settings_form';
}
/**
* {@inheritdoc}
*/
protected function getEditableConfigNames() {
return [
'juicerio.settings',
];
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$site_config = $this
->config('juicerio.settings');
$form['juicer_feed_id'] = [
'#type' => 'textfield',
'#title' => $this
->t('Juicer Username'),
'#default_value' => $site_config
->get('juicer_feed_id'),
'#weight' => 1,
];
$form['juicer_blocks'] = [
'#type' => 'select',
'#title' => $this
->t('Number of Juicer feed blocks'),
'#options' => [
1 => $this
->t('One'),
2 => $this
->t('Two'),
3 => $this
->t('Three'),
],
'#default_value' => $site_config
->get('juicer_blocks'),
'#description' => $this
->t('Only paid Juicer accounts can place more than one feed.'),
'#weight' => 2,
];
$form['juicer_js_embed'] = [
'#type' => 'select',
'#title' => $this
->t('Juicer Javascript to load'),
'#description' => $this
->t('Juicer provides different javascript files in case you are having issues with a conflicting version of jQuery or Slick in their default embed.'),
'#options' => [
'juicerio.embed' => $this
->t('Juicer default (embed.js)'),
'juicerio.embed_no_jquery' => $this
->t('No jQuery (embed-no-jquery.js)'),
'juicerio.embed_no_jquery_no_slick' => $this
->t('No jQuery and No Slick (embed-no-jquery-no-slick.js)'),
],
'#default_value' => $site_config
->get('juicer_js_embed'),
'#weight' => 3,
];
return parent::buildForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$this
->config('juicerio.settings')
->set('juicer_feed_id', $form_state
->getValue('juicer_feed_id'))
->set('juicer_blocks', $form_state
->getValue('juicer_blocks'))
->set('juicer_js_embed', $form_state
->getValue('juicer_js_embed'))
->save();
parent::submitForm($form, $form_state);
}
}
Classes
Name | Description |
---|---|
JuicerAdminForm | Class JuicerAdminForm. |