NegotiationBrowserForm::getEditableConfigNames

protected NegotiationBrowserForm::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/language/src/Form/NegotiationBrowserForm.php, line 55 Class NegotiationBrowserForm Configure the browser language negotiation method for this site. Namespace Drupal\languag

NegotiationBrowserForm::create

public static NegotiationBrowserForm::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 s

NegotiationBrowserForm::buildForm

public NegotiationBrowserForm::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/language/src/Form/NegotiationBrowserForm.php, line 62 Class NegotiationBrowserForm Configure the browser language negotiation metho

NegotiationBrowserForm::$languageManager

The configurable language manager. Type: \Drupal\language\ConfigurableLanguageManagerInterface File core/modules/language/src/Form/NegotiationBrowserForm.php, line 22 Class NegotiationBrowserForm Configure the browser language negotiation method for this site. Namespace Drupal\language\Form Code protected $languageManager;

NegotiationBrowserForm

Configure the browser language negotiation method 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\language\Form\NegotiationBrowserForm File core/modules/language/src/Form/NegotiationBrowserForm.php, line 15 N

NativeUpsert::__toString

public NativeUpsert::__toString() Implements PHP magic __toString method to convert the query to a string. The toString operation is how we compile a query object to a prepared statement. Return value string A prepared statement query string for this object. Overrides Query::__toString File core/lib/Drupal/Core/Database/Driver/pgsql/NativeUpsert.php, line 97 Class NativeUpsert PostgreSQL implementation of native \Drupal\Core\Database\Query\Upsert. Namespace Drupal\Core\Database\Driver\

NativeUpsert::execute

public NativeUpsert::execute() Runs the query against the database. Return value \Drupal\Core\Database\StatementInterface|null A prepared statement, or NULL if the query is not valid. Overrides Upsert::execute File core/lib/Drupal/Core/Database/Driver/pgsql/NativeUpsert.php, line 17 Class NativeUpsert PostgreSQL implementation of native \Drupal\Core\Database\Query\Upsert. Namespace Drupal\Core\Database\Driver\pgsql Code public function execute() { if (!$this->preExecute()) {

NativeUpsert

PostgreSQL implementation of native \Drupal\Core\Database\Query\Upsert. Hierarchy class \Drupal\Core\Database\Query\Query implements PlaceholderInterfaceclass \Drupal\Core\Database\Query\Upsert implements \Countable uses InsertTraitclass \Drupal\Core\Database\Driver\pgsql\NativeUpsert See also http://www.postgresql.org/docs/9.5/static/sql-insert.html#SQL-ON-CONFLICT File core/lib/Drupal/Core/Database/Driver/pgsql/NativeUpsert.php, line 12 Namespace Drupal\Core\Database\Driver\pgsql

MTimeProtectedFileStorage::load

public MTimeProtectedFileStorage::load($name) Loads PHP code from storage. Depending on storage implementation, exists() checks can be expensive, so this function may be called for a file that doesn't exist, and that should not result in errors. This function does not return anything, so it is up to the caller to determine if any code was loaded (for example, check class_exists() or function_exists() for what was expected in the code). Parameters string $name: The virtual file name. Can be a r

MTimeProtectedFileStorage::getPath

public MTimeProtectedFileStorage::getPath($name) File core/lib/Drupal/Component/PhpStorage/MTimeProtectedFileStorage.php, line 69 Class MTimeProtectedFileStorage Stores PHP code in files with securely hashed names. Namespace Drupal\Component\PhpStorage Code public function getPath($name) { return $this->checkFile($name); }