| [ Index ] |
PHP Cross Reference of Drupal 6 (gatewave) |
[Summary view] [Print] [Text view]
1 <?php 2 // $Id: views-view--page.tpl.php,v 1.1.2.2 2009/12/02 00:47:46 sociotech Exp $ 3 4 /** 5 * @file views-view.tpl.php 6 * Main view template 7 * 8 * Variables available: 9 * - $css_name: A css-safe version of the view name. 10 * - $header: The view header 11 * - $footer: The view footer 12 * - $rows: The results of the view query, if any 13 * - $empty: The empty text to display if the view is empty 14 * - $pager: The pager next/prev links to display, if any 15 * - $exposed: Exposed widget form/info to display 16 * - $feed_icon: Feed icon to display, if any 17 * - $more: A link to view more, if any 18 * - $admin_links: A rendered list of administrative links 19 * - $admin_links_raw: A list of administrative links suitable for theme('links') 20 * 21 * @ingroup views_templates 22 */ 23 24 /** 25 * $skinr variable and <div class="inner content"> classes added for Fusion theming 26 */ 27 ?> 28 <div id="view-id-<?php print $name; ?>-<?php print $display_id; ?>" class="view view-<?php print $css_name; ?> view-id-<?php print $name; ?> view-display-id-<?php print $display_id; ?> view-dom-id-<?php print $dom_id; ?> <?php print $skinr; ?>"> 29 <?php if ($admin_links): ?> 30 <div class="views-admin-links views-hide"> 31 <?php print $admin_links; ?> 32 </div> 33 <?php endif; ?> 34 <div class="inner content"> 35 <?php if ($header): ?> 36 <div class="view-header"> 37 <?php print $header; ?> 38 </div> 39 <?php endif; ?> 40 41 <?php if ($exposed): ?> 42 <div class="view-filters"> 43 <?php print $exposed; ?> 44 </div> 45 <?php endif; ?> 46 47 <?php if ($attachment_before): ?> 48 <div class="attachment attachment-before"> 49 <?php print $attachment_before; ?> 50 </div> 51 <?php endif; ?> 52 53 <?php if ($rows): ?> 54 <div class="view-content"> 55 <?php print $rows; ?> 56 </div> 57 <?php elseif ($empty): ?> 58 <div class="view-empty"> 59 <?php print $empty; ?> 60 </div> 61 <?php endif; ?> 62 63 <?php if ($pager): ?> 64 <?php print $pager; ?> 65 <?php endif; ?> 66 67 <?php if ($attachment_after): ?> 68 <div class="attachment attachment-after"> 69 <?php print $attachment_after; ?> 70 </div> 71 <?php endif; ?> 72 73 <?php if ($more): ?> 74 <?php print $more; ?> 75 <?php endif; ?> 76 77 <?php if ($footer): ?> 78 <div class="view-footer"> 79 <?php print $footer; ?> 80 </div> 81 <?php endif; ?> 82 83 <?php if ($feed_icon): ?> 84 <div class="feed-icon"> 85 <?php print $feed_icon; ?> 86 </div> 87 <?php endif; ?> 88 </div><!-- /views-inner --> 89 </div> <?php /* class view */ ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Thu Mar 24 11:18:33 2011 | Cross-referenced by PHPXref 0.7 |