Я создаю форму конфигурации, чтобы динамически устанавливать ключ API для своего пользовательского модуля погоды.
Но когда я пишу в URL адрес http://drupalsite/admin/config/services/weather/settings
Я получаю сообщение об ошибке:
InvalidArgumentException: класс "\Drupal\weather\Form\WeatherSettingsForm" не существует. в Drupal\Core\DependencyInjection\ClassResolver->getInstanceFromDefinition() (строка 24 core/lib/Drupal/Core/DependencyInjection/ClassResolver.php).
Я проверил имя класса и имя файла и очистил кеши, но ошибка не исчезла.
Как это исправить?
погода.routing.yml
погода.weather_page:
путь: '/погода/{город}'
значения по умолчанию:
_controller: '\Drupal\weather\Controller\WeatherPage::getWeather'
требования:
_permission: 'доступ к содержимому'
погода.настройки:
путь: '/admin/config/services/weather/settings'
значения по умолчанию:
_form: '\Drupal\weather\Form\WeatherSettingsForm'
_title: 'Форма настроек погоды'
требования:
_permission: «администрирование конфигурации сайта»
WeatherSettingsForm.php
<?php
namespace Drupal\weather\Form;
use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
/**
* Configure example settings for this site.
*/
class WeatherSettingsForm extends ConfigFormBase {
/**
* {@inheritdoc}
*/
public function getFormId() {
return 'weather_admin_settings';
}
/**
* {@inheritdoc}
*/
protected function getEditableConfigNames() {
return [
'weather.settings',
];
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$config = $this->config('weather.settings');
$form['weather_api_key'] = array(
'#type' => 'textfield',
'#title' => $this->t('API Key'),
'#default_value' => $config->get('weather_api_key'),
);
return parent::buildForm($form, $form_state);
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
$this->configFactory->getEditable('weather.settings')
->set('weather_api_key', $form_state->getValue('weather_api_key'))
->save();
parent::submitForm($form, $form_state);
}
}
?>