Skip to content
Snippets Groups Projects
Select Git revision
  • 3485896-attempt-simplification
  • 11.x default
  • 3485896-ImplementationList-object
  • 3485896-donquixote-order-at-call-time
  • 3485896-parts
  • 3485896-order-operations-by-specifity
  • 3485896-test-file-scan-order
  • test-file-scan-order
  • 3485896-donquixote-order-at-call-time-nicxvan-changes-BAD
  • 3485896-donquixote-order-at-call-time-nicxvan-changes-TBD
  • 3485896-nicxvan-order-at-call-time
  • 3485896-donquixote-tests-nicxvan-FAIL-side-effect
  • 3485896-donquixote-tests-nicxvan
  • 3485896-donquixote-tests-donquixote-2
  • 3485896-donquixote-tests-baseline
  • 3485896-donquixote-suggested-changes-part3
  • 3485896-donquixote-suggested-changes-part2
  • 3485896-donquixote-suggested-changes-part1
  • 3485896-donquixote-suggested-changes
  • 3485896-deprecateHMIA
  • deprecateHMIAFresh
  • previous/3485896-ImplementationList-object/2025-05-01
  • previous/3485896-donquixote-order-at-call-time/2025-04-28
  • previous/3485896-donquixote-order-at-call-time/2025-04-16
  • previous/3485896-parts/2025-04-09
  • previous/3485896-ImplementationList-object/2025-03-29-2
  • previous/3485896-ImplementationList-object/2025-03-29-1
  • previous/3485896-donquixote-order-at-call-time/2025-03-29
  • previous/3485896-ImplementationList-object/2025-03-29
  • previous/3485896-donquixote-order-at-call-time/2025-03-28-1
  • previous/3485896-donquixote-order-at-call-time/2025-03-28
  • previous/3485896-donquixote-order-at-call-time/2025-03-27
  • previous/3485896-donquixote-order-at-call-time/2025-03-26
  • previous/3485896-donquixote-order-at-call-time/2025-03-25-4
  • previous/3485896-donquixote-order-at-call-time/2025-03-25-3
  • previous/3485896-order-operations-by-specifity/2025-03-25-3
  • previous/3485896-donquixote-order-at-call-time/2025-03-25-2
  • previous/3485896-order-operations-by-specifity/2025-03-25-2
  • previous/3485896-donquixote-order-at-call-time/2025-03-25-1
  • previous/3485896-order-operations-by-specifity/2025-03-25-1
  • previous/3485896-donquixote-order-at-call-time/2025-03-25
41 results

example.gitignore

Blame
  • Forked from project / drupal
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    theme.inc 88.19 KiB
    <?php
    
    /**
     * @file
     * The theme system, which controls the output of Drupal.
     *
     * The theme system allows for nearly all output of the Drupal system to be
     * customized by user themes.
     */
    
    use Drupal\Component\Serialization\Json;
    use Drupal\Component\Utility\SafeMarkup;
    use Drupal\Component\Utility\String;
    use Drupal\Component\Utility\UrlHelper;
    use Drupal\Component\Utility\Xss;
    use Drupal\Core\Config\Config;
    use Drupal\Core\Config\StorageException;
    use Drupal\Core\Extension\Extension;
    use Drupal\Core\Extension\ExtensionNameLengthException;
    use Drupal\Core\Page\FeedLinkElement;
    use Drupal\Core\Page\LinkElement;
    use Drupal\Core\Page\MetaElement;
    use Drupal\Core\Template\Attribute;
    use Drupal\Core\Theme\ThemeSettings;
    use Drupal\Component\Utility\NestedArray;
    use Drupal\Core\Render\Element;
    use Symfony\Component\HttpFoundation\Request;
    
    /**
     * @defgroup content_flags Content markers
     * @{
     * Markers used by mark.html.twig and node_mark() to designate content.
     *
     * @see mark.html.twig
     * @see node_mark()
     */
    
    /**
     * Mark content as read.
     */
    const MARK_READ = 0;
    
    /**
     * Mark content as being new.
     */
    const MARK_NEW = 1;
    
    /**
     * Mark content as being updated.
     */
    const MARK_UPDATED = 2;
    
    /**
     * A responsive table class; hide table cell on narrow devices.
     *
     * Indicates that a column has medium priority and thus can be hidden on narrow
     * width devices and shown on medium+ width devices (i.e. tablets and desktops).
     */
    const RESPONSIVE_PRIORITY_MEDIUM = 'priority-medium';
    
    /**
     * A responsive table class; only show table cell on wide devices.
     *
     * Indicates that a column has low priority and thus can be hidden on narrow
     * and medium viewports and shown on wide devices (i.e. desktops).
     */
    const RESPONSIVE_PRIORITY_LOW = 'priority-low';
    
    /**
     * @} End of "defgroup content_flags".