RegionalForm::getEditableConfigNames

protected RegionalForm::getEditableConfigNames() Gets the configuration names that will be editable. Return value array An array of configuration object names that are editable if called in conjunction with the trait's config() method. Overrides ConfigFormBaseTrait::getEditableConfigNames File core/modules/system/src/Form/RegionalForm.php, line 56 Class RegionalForm Configure regional settings for this site. Namespace Drupal\system\Form Code protected function getEditableConfigNames()

RegionalForm::create

public static RegionalForm::create(ContainerInterface $container) Instantiates a new instance of this class. This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton. Parameters \Symfony\Component\DependencyInjection\ContainerInterface $container: The service con

RegionalForm::buildForm

public RegionalForm::buildForm(array $form, FormStateInterface $form_state) 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 core/modules/system/src/Form/RegionalForm.php, line 63 Class RegionalForm Configure regional settings for this site. Namespace Drupal\system\Form Code

RegionalForm::$countryManager

The country manager. Type: \Drupal\Core\Locale\CountryManagerInterface File core/modules/system/src/Form/RegionalForm.php, line 21 Class RegionalForm Configure regional settings for this site. Namespace Drupal\system\Form Code protected $countryManager;

RegionalForm

Configure regional settings for this site. Hierarchy class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTraitclass \Drupal\Core\Form\ConfigFormBase uses ConfigFormBaseTraitclass \Drupal\system\Form\RegionalForm File core/modules/system/src/Form/RegionalForm.php, line 14 Namespace Drupal\system\Form Members Name

region.html.twig

Default theme implementation to display a region. Available variables: content: The content for this region, typically blocks. attributes: HTML attributes for the region <div>. region: The name of the region variable as defined in the theme's .info.yml file. See also template_preprocess_region() File core/modules/system/templates/region.html.twig Related topics Theme system overview Functions and templates for the user interface that themes can override.

RegexDirectoryIterator::__construct

public RegexDirectoryIterator::__construct($path, $regex) RegexDirectoryIterator constructor. Parameters string $path: The path to scan. string $regex: The regular expression to match, including delimiters. For example, /\.yml$/ would list only files ending in .yml. File core/lib/Drupal/Component/FileSystem/RegexDirectoryIterator.php, line 26 Class RegexDirectoryIterator Iterates over files whose names match a regular expression in a directory. Namespace Drupal\Component\FileSystem Co

RegexDirectoryIterator::accept

public RegexDirectoryIterator::accept() Implements \FilterIterator::accept(). File core/lib/Drupal/Component/FileSystem/RegexDirectoryIterator.php, line 36 Class RegexDirectoryIterator Iterates over files whose names match a regular expression in a directory. Namespace Drupal\Component\FileSystem Code public function accept() { /** @var \SplFileInfo $file_info */ $file_info = $this->getInnerIterator()->current(); return $file_info->isFile() && preg_match($this-&g

RegexDirectoryIterator::$regex

The regular expression to match. Type: string File core/lib/Drupal/Component/FileSystem/RegexDirectoryIterator.php, line 15 Class RegexDirectoryIterator Iterates over files whose names match a regular expression in a directory. Namespace Drupal\Component\FileSystem Code protected $regex;

RegexDirectoryIterator

Iterates over files whose names match a regular expression in a directory. Hierarchy class \Drupal\Component\FileSystem\RegexDirectoryIterator extends \FilterIterator File core/lib/Drupal/Component/FileSystem/RegexDirectoryIterator.php, line 8 Namespace Drupal\Component\FileSystem Members Name Modifiers Type Description RegexDirectoryIterator::$regex protected property The regular expression to match. RegexDirectoryIterator::accept public function Implements \Filt