public function JuicerAdminForm::buildForm in Juicer - Social Media Feed Aggregator 8
Form constructor.
Parameters
array $form: An associative array containing the structure of the form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Return value
array The form structure.
Overrides ConfigFormBase::buildForm
File
- src/
Form/ JuicerAdminForm.php, line 37 - Contains \Drupal\juicerio\src\Form\JuicerAdminForm.
Class
- JuicerAdminForm
- Class JuicerAdminForm.
Namespace
Drupal\juicerio\FormCode
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);
}