<?php

/*
 * @file
 */

use Drupal\taxonomy\Entity\Term;

/**
 * Implements hook_install().
 */
function pe_edu_install() {
  // Create these terms here because of view dependencies.
  Term::create([
    'name' => 'Academic',
    'vid' => 'section_type',
    'uuid' => 'aaccb11b-4a1b-4020-8127-394d660707ab',
  ])->save();

  Term::create([
    'name' => 'Non-academic',
    'vid' => 'section_type',
    'uuid' => 'f7a7dd1c-7bf2-4875-ad07-7d313777a171',
  ])->save();
}
