Skip to content

Instantly share code, notes, and snippets.

@lkacenja
Created January 2, 2017 17:47
Show Gist options
  • Save lkacenja/53e708f7c497808a6ce0ff926b755122 to your computer and use it in GitHub Desktop.
Save lkacenja/53e708f7c497808a6ce0ff926b755122 to your computer and use it in GitHub Desktop.
Years to taxonomy
<?php
use Drupal\taxonomy\Entity\Term;
$min = 2001;
$max = 2016;
for ($i = $min; $i <= $max; $i ++) {
$term = Term::create([
'name' => $i ,
'vid' => 'year',
])->save();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment