Created
January 2, 2017 17:47
-
-
Save lkacenja/53e708f7c497808a6ce0ff926b755122 to your computer and use it in GitHub Desktop.
Years to taxonomy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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