You are here

AppRootFactory.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/lib/Drupal/Core/AppRootFactory.php

Namespace

Drupal\Core

File

core/lib/Drupal/Core/AppRootFactory.php
View source
<?php

/**
 * @file
 * Contains \Drupal\Core\AppRootFactory.
 */
namespace Drupal\Core;


/**
 * Gets the app root from the kernel.
 */
class AppRootFactory {

  /**
   * The Drupal kernel.
   *
   * @var \Drupal\Core\DrupalKernelInterface
   */
  protected $drupalKernel;

  /**
   * Constructs an AppRootFactory instance.
   *
   * @param \Drupal\Core\DrupalKernelInterface $drupal_kernel
   *   The Drupal kernel.
   */
  public function __construct(DrupalKernelInterface $drupal_kernel) {
    $this->drupalKernel = $drupal_kernel;
  }

  /**
   * Gets the app root.
   *
   * @return string
   */
  public function get() {
    return $this->drupalKernel
      ->getAppRoot();
  }

}

Classes

Namesort descending Description
AppRootFactory Gets the app root from the kernel.