Commit b1240e88 authored by catch's avatar catch
Browse files

Issue #3488681 by dcam, jazzsequence, mradcliffe, nicxvan, quietone, mmenavas,...

Issue #3488681 by dcam, jazzsequence, mradcliffe, nicxvan, quietone, mmenavas, heilop: Fix defgroup open and close that were separated during Hook conversion

(cherry picked from commit 1cf121ba)
parent b9dbfd83
Loading
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -15,10 +15,6 @@
 */
require_once __DIR__ . '/field.purge.inc';

/**
 * @} End of "defgroup field".
 */

/**
 * Assembles a partial entity structure with initial IDs.
 *
+4 −0
Original line number Diff line number Diff line
@@ -256,6 +256,10 @@ public function entityBundleDelete($entity_type_id, $bundle): void {
    }
  }

  /**
   * @} End of "defgroup field".
   */

  /**
   * Implements hook_config_import_steps_alter().
   */
+9 −0
Original line number Diff line number Diff line
@@ -386,6 +386,11 @@ function node_form_system_themes_admin_form_submit($form, FormStateInterface $fo
    ->save();
}

/**
 * @addtogroup node_access
 * @{
 */

/**
 * Fetches an array of permission IDs granted to the given user ID.
 *
@@ -657,6 +662,10 @@ function _node_access_rebuild_batch_finished($success, $results, $operations): v
  }
}

/**
 * @} End of "addtogroup node_access".
 */

/**
 * Marks a node to be re-indexed by the node_search plugin.
 *
+0 −4
Original line number Diff line number Diff line
@@ -158,10 +158,6 @@ public function help($route_name, RouteMatchInterface $route_match): ?string {
    return NULL;
  }

  /**
   * @} End of "defgroup authorize".
   */

  /**
   * Implements hook_updater_info().
   */
+4 −0
Original line number Diff line number Diff line
@@ -306,6 +306,10 @@ function system_authorized_batch_process() {
  return batch_process($finish_url->setAbsolute()->toString(), $process_url);
}

/**
 * @} End of "defgroup authorize".
 */

/**
 * Implements hook_preprocess_HOOK() for block templates.
 */
Loading