diff --git a/page_manager/help/variants.html b/page_manager/help/variants.html index 48cf9c3..150e57d 100644 --- a/page_manager/help/variants.html +++ b/page_manager/help/variants.html @@ -1,2 +1,12 @@ +Variants are output handlers, and every page_manager_pages page should have at least one. Most pages (page manager pages) will simply have only one. Pages with multiple variants will choose one and only one Variant to display content to the user and will use the Selection Rules to figure out which Variant to display. -Please visit http://drupal.org/node/528078 to help provide this documentation page. \ No newline at end of file +Variants are to do with Panels, and are a way to vary an output slightly. Variants can inherit most of their behaviour and can override what they need. If you have experience with Views then it is most closely like having another display. The variant may be changing how the panel is laid out or may add other elements. The decision to use one variant or the other can be based on selection rules or contexts, selection rules being more global and context more about what is being looked at, i.e. the node being viewed etc. + +Variants can make use of panels_display (layouts) and its corresponding panels_pane (content types). + +How variants are binded to layouts. + +Each record of variant has a column conf and inside conf is a foreign key did which points to a +panels_display record primary key. + +Please visit http://drupal.org/node/528078 to help provide more to this documentation page.