You are here

homebox.tpl.php in Homebox 6.2

homebox.tpl.php Default layout for homebox.

File

homebox.tpl.php
View source
<?php

/**
 * @file
 * homebox.tpl.php
 * Default layout for homebox.
 */
global $user;
?>
<div id="homebox" class="<?php

print $classes;
?>">
  <?php

if ($user->uid) {
  ?>
    <div id="homebox-buttons">
      <?php

  if (!empty($add_links)) {
    ?>
        <a href="javascript:void(0)" id="homebox-add-link"><?php

    print t('Add a block');
    ?></a>
      <?php

  }
  ?>
      <?php

  print $save_form;
  ?>
    </div>
  <?php

}
?>

  <?php

if (!empty($add_links)) {
  ?>
    <div id="homebox-add"><?php

  print $add_links;
  ?></div>
  <?php

}
?>

  <div class="homebox-maximized"></div>
  <?php

for ($i = 1; $i <= count($regions); $i++) {
  ?>
    <div class="homebox-column-wrapper homebox-column-wrapper-<?php

  print $i;
  ?>"<?php

  print count($page->settings['widths']) ? ' style="width: ' . $page->settings['widths'][$i] . '%;"' : '';
  ?>>
      <div class="homebox-column" id="homebox-column-<?php

  print $i;
  ?>">
        <?php

  foreach ($regions[$i] as $key => $weight) {
    ?>
          <?php

    foreach ($weight as $block) {
      ?>
            <?php

      if ($block->content) {
        ?>
              <?php

        print theme('homebox_block', $block, $page);
        ?>
            <?php

      }
      ?>
          <?php

    }
    ?>
        <?php

  }
  ?>
      </div>
    </div>
  <?php

}
?>
  <div class="clear-block"></div>
</div>

Globals

Namesort descending Description
$user