| [ Index ] |
PHP Cross Reference of Drupal 6 (yi-drupal) |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * @file 4 * 5 * Display the box for rounded corners. 6 * 7 * - $output: The content of the box. 8 * - $classes: The classes that must be applied to the top divs. 9 * - $pane: The pane being rendered 10 * - $display: The display being rendered 11 * - $content: The content being rendered (will be already in $output) 12 */ 13 ?> 14 <div class="rounded-shadow <?php print $classes ?>"> 15 <div class="rounded-shadow-background"> 16 <div class="rounded-shadow-wrap-corner"> 17 <div class="rounded-shadow-top-edge"> 18 <div class="rounded-shadow-left"></div> 19 <div class="rounded-shadow-right"></div> 20 </div> 21 <div class="rounded-shadow-left-edge"> 22 <div class="rounded-shadow-right-edge clear-block"> 23 <?php print $output; ?> 24 </div> 25 </div> 26 <div class="rounded-shadow-bottom-edge"> 27 <div class="rounded-shadow-left"></div><div class="rounded-shadow-right"></div> 28 </div> 29 </div> 30 </div> 31 </div>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Mon Jul 9 18:01:44 2012 | Cross-referenced by PHPXref 0.7 |