Search for relationship
Title | Object type | File name | Summary |
---|---|---|---|
relationship.html | file | help/ |
|
view::$relationship | property | includes/ |
Stores the relationship handlers which are initialized on this view. |
Views' relationship handlers | group | handlers/ |
Handlers to tell Views how to create alternate relationships. |
views_handler::set_relationship | function | includes/ |
Called just prior to query(), this lets a handler set up any relationship it needs. |
views_handler_relationship | class | handlers/ |
Simple relationship handler that allows a new version of the primary table to be linked in. |
views_handler_relationship.inc | file | handlers/ |
Views' relationship handlers. |
views_handler_relationship::init | function | handlers/ |
Init handler to let relationships live on tables other than the table they operate on. |
views_handler_relationship::label | function | handlers/ |
Get this field's label. |
views_handler_relationship::options_form | function | handlers/ |
Default options form that provides the label widget that all fields should have. |
views_handler_relationship::option_definition | function | handlers/ |
Information about options for all kinds of purposes will be held here. |
views_handler_relationship::query | function | handlers/ |
Called to implement a relationship in a query. |
views_handler_relationship::use_group_by | function | handlers/ |
You can't groupby a relationship. |
views_handler_relationship_broken | class | handlers/ |
A special handler to take the place of missing or broken handlers. |
views_handler_relationship_broken::broken | function | handlers/ |
Determine if the handler is considered 'broken' |
views_handler_relationship_broken::ensure_my_table | function | handlers/ |
Ensure the main table for this handler is in the query. This is used a lot. |
views_handler_relationship_broken::options_form | function | handlers/ |
Default options form that provides the label widget that all fields should have. |
views_handler_relationship_broken::query | function | handlers/ |
Called to implement a relationship in a query. |
views_handler_relationship_broken::ui_name | function | handlers/ |
Return a string representing this handler's name in the UI. |
views_handler_relationship_node_term_data | class | modules/ |
Relationship handler to return the taxonomy terms of nodes. |
views_handler_relationship_node_term_data.inc | file | modules/ |
Views' relationship handlers. |
views_handler_relationship_node_term_data::options_form | function | modules/ |
Default options form that provides the label widget that all fields should have. |
views_handler_relationship_node_term_data::option_definition | function | modules/ |
Information about options for all kinds of purposes will be held here. |
views_handler_relationship_node_term_data::query | function | modules/ |
Called to implement a relationship in a query. |
views_handler_relationship_translation | class | modules/ |
Handles relationships for content translation sets and provides multiple options. |
views_handler_relationship_translation.inc | file | modules/ |
|
views_handler_relationship_translation::options_form | function | modules/ |
Add a translation selector. |
views_handler_relationship_translation::option_definition | function | modules/ |
Information about options for all kinds of purposes will be held here. |
views_handler_relationship_translation::query | function | modules/ |
Called to implement a relationship in a query. |
views_plugin_query_default::$relationships | property | plugins/ |
Holds an array of relationships, which are aliases of the primary table that represent different ways to join the same table in. |
views_plugin_query_default::add_relationship | function | plugins/ |
A relationship is an alternative endpoint to a series of table joins. Relationships must be aliases of the primary table and they must join either to the primary table or to a pre-existing relationship. |