ViewUI::language

public ViewUI::language() Gets the language of the entity. Return value \Drupal\Core\Language\LanguageInterface The language object. Overrides EntityInterface::language File core/modules/views_ui/src/ViewUI.php, line 1041 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function language() { return $this->storage->language(); }

Merge::$insertFields

An array of fields on which to insert. Type: array File core/lib/Drupal/Core/Database/Query/Merge.php, line 77 Class Merge General class for an abstracted MERGE query operation. Namespace Drupal\Core\Database\Query Code protected $insertFields = array();

ExceptionJsonSubscriber::on404

public ExceptionJsonSubscriber::on404(GetResponseForExceptionEvent $event) Handles a 404 error for JSON. Parameters \Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent $event: The event to process. File core/lib/Drupal/Core/EventSubscriber/ExceptionJsonSubscriber.php, line 58 Class ExceptionJsonSubscriber Default handling for JSON errors. Namespace Drupal\Core\EventSubscriber Code public function on404(GetResponseForExceptionEvent $event) { $response = new JsonResponse(

ViewUI::load

public static ViewUI::load($id) Loads an entity. Parameters mixed $id: The id of the entity to load. Return value static The entity object or NULL if there is no entity with the given ID. Overrides EntityInterface::load File core/modules/views_ui/src/ViewUI.php, line 957 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public static function load($id) { return View::load($id); }

ControllerBase::create

public static ControllerBase::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 c

CommentTypeListBuilder::buildRow

public CommentTypeListBuilder::buildRow(EntityInterface $entity) Builds a row for an entity in the entity listing. Parameters \Drupal\Core\Entity\EntityInterface $entity: The entity for this row of the list. Return value array A render array structure of fields for this entity. Overrides EntityListBuilder::buildRow See also \Drupal\Core\Entity\EntityListBuilder::render() File core/modules/comment/src/CommentTypeListBuilder.php, line 40 Class CommentTypeListBuilder Defines a class to bui

ConfigEntityBase::enable

public ConfigEntityBase::enable() Enables the configuration entity. Return value $this Overrides ConfigEntityInterface::enable File core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php, line 181 Class ConfigEntityBase Defines a base configuration entity class. Namespace Drupal\Core\Config\Entity Code public function enable() { return $this->setStatus(TRUE); }

DateHelper::monthNames

public static DateHelper::monthNames($required = FALSE) Returns a translated array of month names. Parameters bool $required: (optional) If FALSE, the returned array will include a blank value. Defaults to FALSE. Return value array An array of month names. File core/lib/Drupal/Core/Datetime/DateHelper.php, line 81 Class DateHelper Defines Gregorian Calendar date values. Namespace Drupal\Core\Datetime Code public static function monthNames($required = FALSE) { // Force the key to us

DateHelper::monthNamesAbbr

public static DateHelper::monthNamesAbbr($required = FALSE) Constructs a translated array of month name abbreviations Parameters bool $required: (optional) If FALSE, the returned array will include a blank value. Defaults to FALSE. Return value array An array of month abbreviations. File core/lib/Drupal/Core/Datetime/DateHelper.php, line 112 Class DateHelper Defines Gregorian Calendar date values. Namespace Drupal\Core\Datetime Code public static function monthNamesAbbr($required = F

ViewUI::$forms

Contains an array of form keys and their respective classes. Type: array File core/modules/views_ui/src/ViewUI.php, line 110 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public static $forms = array( 'add-handler' => '\Drupal\views_ui\Form\Ajax\AddItem', 'analyze' => '\Drupal\views_ui\Form\Ajax\Analyze', 'handler' => '\Drupal\views_ui\Form\Ajax\ConfigHandler', 'handler-extra' => '\Drupal\views_ui\Form\Ajax\ConfigHandlerExtra',