You are here

trait LayoutBuilderRestrictionHelperTrait in Dashboards with Layout Builder 2.0.x

Hierarchy

File

src/LayoutBuilderRestrictionHelperTrait.php, line 9

Namespace

Drupal\dashboards
View source
trait LayoutBuilderRestrictionHelperTrait {
  public function isDashboardStorage(SectionStorageInterface $section) : bool {
    if ($section instanceof DashboardSectionStorage || $section instanceof UserDashboardSectionStorage) {
      return TRUE;
    }
    return FALSE;
  }

}

Members