You are here

private function TacjsSettings::getValuesStepOne in TacJS 8

Same name and namespace in other branches
  1. 8.2 src/TacjsSettings.php \Drupal\tacjs\TacjsSettings::getValuesStepOne()

Get Values Step One Form.

Return value

mixed Return result.

1 call to TacjsSettings::getValuesStepOne()
TacjsSettings::getFieldsSelects in src/TacjsSettings.php
Function return config selected.

File

src/TacjsSettings.php, line 294

Class

TacjsSettings
Class TacjsSettings.

Namespace

Drupal\tacjs

Code

private function getValuesStepOne() {
  $config = \Drupal::getContainer()
    ->get('config.factory')
    ->getEditable('tacjs.admin_settings_form');
  $result = unserialize($config
    ->get('donnes_step_one'));
  return $result;
}