Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><em>-> but I'm still not sure how the vocabulary is associated with the node</em></p> <p>In Drupal 7 taxonomy references are done very differently than they were in Drupal 6. If you want to associate a vocabulary with a node in Drupal 7, you have to add that term as a field on the content type:</p> <ol> <li>Go to admin/structure/types/manage/article/fields where you can add/delete/modify fields for your article content type</li> <li>Add a new field, name it whatever you'd like, and make sure you choose type 'Term reference' from the drop-down</li> <li>Make sure you choose the correct vocabulary for it to pull from</li> <li>Repeat this step (add two more fields) for the remaining two vocabularies.</li> <li>Go to admin/structure/types/manage/article/display and modify whether you want these new fields to be displayed on the node or to be hidden</li> </ol> <p>=============== Addition ==================</p> <p>In Drupal 7, since terms are just like any other field, you'll see the relationship in the DB (of course -- only once you add the appropriate term reference field to your content type) in a newly created table that stores the information about that field. For example, it may be called field_data_field_tags for the standard 'tags' vocabulary that comes with Drupal 7 by default. In that table you'll see the columns <strong>entity_id</strong> (that's the node's id) and <strong>field_tags_id</strong> (that's the term's id), but that column may have a different name for your specific term. So you would have three separate tables for each of your terms' relationships to your node, since they would be three separate fields in Drupal 7.</p> <p>Does that help a little more?</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload