Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rubensayshi/1033332 to your computer and use it in GitHub Desktop.
Save rubensayshi/1033332 to your computer and use it in GitHub Desktop.
Voiture :: SFI :: SFIVocabulary
<?php
// Vocabulary
$maincats = $coll->addItem(new SFIVocabulary(array(
'machine_name' => 'main_categories',
'name' => 'Main Categories',
'i18n_mode' => 1,
)));
// Term
$maincats->addItem(new SFITerm(array(
'name' => "My First Category",
)));
// Term
$maincats->addItem(new SFITerm(array(
'name' => "My Second Category",
'field_special' => "Special field value",
)));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment