View source
<?php
namespace Drupal\fontyourface\Form;
use Drupal\Core\Form\ConfigFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\fontyourface\Entity\Font;
use Drupal\Core\StringTranslation\TranslatableMarkup;
class FontSettingsForm extends ConfigFormBase {
protected function getEditableConfigNames() {
return [
'fontyourface.settings',
];
}
public function getFormId() {
return 'Font_settings';
}
public function buildForm(array $form, FormStateInterface $form_state) {
$config = $this
->config('fontyourface.settings');
$form['Font_settings']['#markup'] = 'Settings form for @font-your-face. Support modules can use this form for settings or to import fonts.';
$form['load_all_enabled_fonts'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Load all enabled fonts'),
'#default_value' => (int) $config
->get('load_all_enabled_fonts'),
'#description' => $this
->t('This will load all fonts that have been enabled regardless of theme. Warning: this may add considerable download weight to your pages depending on the number of enabled fonts'),
];
$themes = [];
foreach (\Drupal::service('theme_handler')
->listInfo() as $name => $theme) {
if ($theme->status === 1) {
$themes[$name] = $theme->info['name'];
}
}
$form['load_on_themes'] = [
'#type' => 'select',
'#title' => $this
->t('Load fonts only on selected themes'),
'#options' => $themes,
'#default_value' => $config
->get('load_on_themes'),
'#description' => $this
->t('Select only the themes on which you need to enable all fonts. Leave blank to load it on all themes.'),
'#states' => [
'visible' => [
':input[name="load_all_enabled_fonts"]' => [
'checked' => TRUE,
],
],
],
'#multiple' => TRUE,
];
$form['imports'] = [
'#type' => 'fieldset',
'#title' => 'Import',
'#collapsible' => FALSE,
];
module_set_weight('fontyourface', 1);
foreach (\Drupal::moduleHandler()
->getImplementations('fontyourface_api') as $module_name) {
module_set_weight($module_name, 10);
}
foreach (\Drupal::moduleHandler()
->getImplementations('fontyourface_import') as $module_name) {
$form['imports']['import_' . $module_name] = [
'#type' => 'submit',
'#value' => $this
->t('Import from @module', [
'@module' => $module_name,
]),
'#attributes' => [
'style' => 'margin: 10px;',
],
'#prefix' => '<div>',
'#suffix' => '</div>',
];
}
$form['imports']['import'] = [
'#type' => 'submit',
'#value' => $this
->t('Import all fonts'),
'#weight' => 10,
];
return parent::buildForm($form, $form_state);
}
public function submitForm(array &$form, FormStateInterface $form_state) {
$values = $form_state
->getValues();
$op = (string) $values['op'];
$batch = [
'title' => $this
->t('Importing...'),
'operations' => [],
'finished' => '\\Drupal\\fontyourface\\Form\\FontSettingsForm::importFinished',
];
foreach (\Drupal::moduleHandler()
->getImplementations('fontyourface_import') as $module_name) {
if ($op == $this
->t('Import all fonts') || $op == $this
->t('Import from @module', [
'@module' => $module_name,
])) {
$batch['operations'][] = [
'\\Drupal\\fontyourface\\Form\\FontSettingsForm::importFromProvider',
[
$module_name,
],
];
}
}
if (!empty($batch['operations'])) {
batch_set($batch);
}
if ($op == $this
->t('Save configuration')) {
$config = $this
->config('fontyourface.settings')
->set('load_all_enabled_fonts', $values['load_all_enabled_fonts'])
->set('load_on_themes', $values['load_on_themes'])
->save();
parent::submitForm($form, $form_state);
}
$fonts = Font::loadActivatedFonts();
foreach ($fonts as $font) {
$font
->activate();
}
}
public static function importFromProvider($module, array &$context) {
$context['message'] = new TranslatableMarkup('Importing from @module', [
'@module' => $module,
]);
$module_handler = \Drupal::moduleHandler();
$new_context = $module_handler
->invoke($module, 'fontyourface_import', [
$context,
]);
if (!empty($new_context)) {
$context = $new_context;
}
}
public static function importFinished($success, array $results, array $operations) {
\Drupal::messenger()
->addMessage(new TranslatableMarkup('Finished importing fonts.'));
}
}