मैं एक शब्दावली में बहुत सारे शब्द (~ 200) जोड़ने का प्रयास कर रहा हूं, लेकिन मुझे Drupal 8 के लिए अपडेट किए गए कोई भी आयात मॉड्यूल नहीं मिल रहे हैं, और ऐसा लगता है कि Drupal 7 में ऐसा करने के लिए फ़ंक्शन मौजूद नहीं हैं Drupal 8. तो, क्या कोई मुझे ऐसा करने के लिए सही दिशा में इंगित कर सकता है?
मैंने इसे entity_create
इस कोड के साथ टिप्पणियों में सुझाए गए अनुसार करने का प्रयास किया :
$term_create = entity_create('taxonomy_term', array('name' => 'test', 'vocabulary_name' => 'client'));
लेकिन मुझे यह त्रुटि मिली:
Drupal\Core\Entity\EntityStorageException: Missing bundle for entity type taxonomy_term in Drupal\Core\Entity\FieldableEntityStorageControllerBase->create() (line 65 of core/lib/Drupal/Core/Entity/FieldableEntityStorageControllerBase.php).
कोई विचार?
$term_create = entity_create('taxonomy_term', array('name' => 'test', 'vocabulary_name' => 'client'));
लेकिन मुझे त्रुटि मिली Drupal\Core\Entity\EntityStorageException: Missing bundle for entity type taxonomy_term in Drupal\Core\Entity\FieldableEntityStorageControllerBase->create() (line 65 of core/lib/Drupal/Core/Entity/FieldableEntityStorageControllerBase.php).
- कोई विचार?
vid
स्थान पर प्रयास करें vocabulary_name
। ऐसा लगता है कि स्तंभ अब भी है vid
में taxonomy_term_data
है, लेकिन यह अब आईडी के बजाय vocab नाम है
entity_create()