Commit c5b5b279 authored by catch's avatar catch
Browse files

Issue #3304285 by longwave, Spokje, bbrala, ravi.shankar, quietone,...

Issue #3304285 by longwave, Spokje, bbrala, ravi.shankar, quietone, phenaproxima: Remove Seven from core

(cherry picked from commit c7fa15fc)
parent 5349c9f6
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -378,9 +378,6 @@ Serialization
Settings Tray
- Ted Bowman 'tedbow' https://www.drupal.org/u/tedbow

Seven
- ?

Shortcut
- Tobias Zimmermann 'tstoeckler' https://www.drupal.org/u/tstoeckler
- Jibran Ijaz 'jibran' https://www.drupal.org/u/jibran
+3 −3
Original line number Diff line number Diff line
@@ -13,9 +13,9 @@
 *
 * Used for site installs, updates and when the site is in maintenance mode.
 * It also applies when the database is unavailable or bootstrap was not
 * complete. Seven is always used for the initial install and update
 * operations. In other cases, Claro is used, but this can be overridden by
 * setting a "maintenance_theme" key in the $settings variable in settings.php.
 * complete. Claro is always used for the initial install and update
 * operations, but this can be overridden by setting a "maintenance_theme" key
 * in the $settings variable in settings.php.
 */
function _drupal_maintenance_theme() {
  // If the theme is already set, assume the others are set too, and do nothing.
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ interface DependentPluginInterface {
   *     'config' => array('user.role.anonymous', 'user.role.authenticated'),
   *     'content' => array('node:article:f0a189e6-55fb-47fb-8005-5bef81c44d6d'),
   *     'module' => array('node', 'user'),
   *     'theme' => array('seven'),
   *     'theme' => array('claro'),
   *   );
   *   @endcode
   *
+2 −2
Original line number Diff line number Diff line
@@ -404,7 +404,7 @@ public function fieldSettingsForm(array $form, FormStateInterface $form_state);
   *     'config' => array('user.role.anonymous', 'user.role.authenticated'),
   *     'content' => array('node:article:f0a189e6-55fb-47fb-8005-5bef81c44d6d'),
   *     'module' => array('node', 'user'),
   *     'theme' => array('seven'),
   *     'theme' => array('claro'),
   *   );
   *   @endcode
   *
@@ -437,7 +437,7 @@ public static function calculateDependencies(FieldDefinitionInterface $field_def
   *     'config' => ['user.role.anonymous', 'user.role.authenticated'],
   *     'content' => ['node:article:f0a189e6-55fb-47fb-8005-5bef81c44d6d'],
   *     'module' => ['node', 'user'],
   *     'theme' => ['seven'],
   *     'theme' => ['claro'],
   *   ];
   *   @endcode
   *
+3 −3
Original line number Diff line number Diff line
@@ -1223,9 +1223,9 @@ function hook_theme($existing, $type, $theme, $path) {
 * @code
 * $theme_registry['block_content_add_list'] = array (
 *   'template' => 'block-content-add-list',
 *   'path' => 'core/themes/seven/templates',
 *   'path' => 'core/themes/claro/templates',
 *   'type' => 'theme_engine',
 *   'theme path' => 'core/themes/seven',
 *   'theme path' => 'core/themes/claro',
 *   'includes' => array (
 *     0 => 'core/modules/block_content/block_content.pages.inc',
 *   ),
@@ -1236,7 +1236,7 @@ function hook_theme($existing, $type, $theme, $path) {
 *     0 => 'template_preprocess',
 *     1 => 'template_preprocess_block_content_add_list',
 *     2 => 'contextual_preprocess',
 *     3 => 'seven_preprocess_block_content_add_list',
 *     3 => 'claro_preprocess_block_content_add_list',
 *   ),
 * );
 * @endcode
Loading