undefined index druapl regions php

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
NicoCaldo
Forum Newbie
Posts: 2
Joined: Tue Jun 12, 2012 1:36 am

undefined index druapl regions php

Post by NicoCaldo »

I am using drupal to enter a new region for my site. This must be in the bottom of all, under the Foote. I went to edit the file. Details of the theme by adding the new region in this way
regions [last] = Last
Then you have to go put the php code for the region in page.tpl.php file
I had already inserio these ores fashion by a region code

Code: Select all

   <? php if ($ page ['logos'])?>
   <div class="loghi">
     <? php print render ($ page ['logos']);?>
   </ div> <! - /. logos icons ->
   <? php endif;?>
So as I need the new region at the bottom of the page I went to look for the end of the page and wrote

Code: Select all

<? php if ($ page ['last'])?>
   <div class="last">
     <? php print render ($ page ['last']);?>
   </ div> <! - /. last icons ->
   <? php endif;?>
Unfortunately druapl me error Notice: Undefined index: last in include () (line 133 of / web / htdocs / http://www.wite.it / home / drupal / sites / all / themes / andromeda / templates / page.tpl.php) .

I'll post the whole page php if someone can help me

Code: Select all

<?php
/**
 * @file
 * Theme implementation to display a single Drupal page.
 *
 * @see template_preprocess()
 * @see template_preprocess_page()
 * @see andromeda_preprocess_page()
 */
?>
<div id="header">
  <div class="section">
    <div id="site-logo-and-name">
      <?php if ($logo): ?>
        <a href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>" rel="home" id="logo">
          <img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" />
        </a>
      <?php endif; ?>
  
      <?php if ($site_name || $site_slogan): ?>
        <div id="name-and-slogan">
          <?php if ($site_name): ?>
            <?php if ($title): ?>
              <div id="site-name">
                <strong>
                  <a href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>" rel="home"><span><?php print $site_name; ?></span></a>
                </strong>
              </div>
            <?php else: /* Use h1 when the content title is empty */ ?>
              <h1 id="site-name">
                <a href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>" rel="home"><span><?php print $site_name; ?></span></a>
              </h1>
            <?php endif; ?>
          <?php endif; ?>
  
          <?php if ($site_slogan): ?>
            <div id="site-slogan">
              <?php print $site_slogan; ?>
            </div>
          <?php endif; ?>
  
        </div> <!-- /#name-and-slogan -->
      <?php endif; ?>
    </div> <!-- /#site-logo-and-name -->
  
    <?php if ($page['header']) : ?>
      <?php print drupal_render($page['header']); ?>
    <?php else : ?>
      <div id="main-menu" class="navigation">
        <?php print theme('links__system_main_menu', array(
          'links' => $main_menu,
          'attributes' => array(
            'id' => 'main-menu-links',
            'class' => array('links', 'clearfix'),
          ),
          'heading' => array(
            'text' => t('Main menu'),
            'level' => 'h2',
            'class' => array('element-invisible'),
          ),
        )); ?>
      </div> <!-- /#main-menu -->
    <?php endif; ?>
    
    
  </div> <!-- /.section -->
</div> <!-- /#header -->

<div id="page-wrapper"><div id="page">
  <?php if($page['slideshow']) : ?>
    <div id="slideshow">
      <?php print drupal_render($page['slideshow']);; ?>
    </div>
  <?php endif; ?>
  
  <?php if ($page['loghi']): ?>
  <div class="loghi">
    <?php print render($page['loghi']); ?>
  </div> <!-- /.loghi icons -->
  <?php endif; ?>
  
  <?php if($page['highlight']) : ?>
    <div id="highlight">
      <?php print drupal_render($page['highlight']); ?>
    </div>
  <?php endif; ?>
  <div id="main">
    <a id="main-content"></a>
    <?php print $messages; ?>
    <div id="content">
      <?php if ($breadcrumb): ?>
        <div id="breadcrumb"><?php print $breadcrumb; ?></div>
      <?php endif; ?>
    
      <?php print render($title_prefix); ?>
      <?php if ($title): ?>
        <h1 class="title" id="page-title">
          <?php print $title; ?>
        </h1>
      <?php endif; ?>
      <?php print render($title_suffix); ?>
      <?php if ($action_links): ?>
        <ul class="action-links">
          <?php print render($action_links); ?>
        </ul>
      <?php endif; ?>
      <?php if ($tabs): ?>
        <div class="tabs">
          <?php print render($tabs); ?>
        </div>
      <?php endif; ?>
      <?php print render($page['help']); ?>
      <?php print render($page['content']); ?>
      <?php print $feed_icons; ?>
    </div> <!-- /#content -->
    
    <?php if($page['sidebar']) : ?>
      <div id="sidebar">
        <?php print drupal_render($page['sidebar']); ?>
      </div>
    <?php endif; ?>
  </div> <!-- /#main -->
</div></div> <!-- /#page, /#page-wrapper -->

<?php if($page['footer']) : ?>
  <div id="footer">
    <div class="section">
      <?php print drupal_render($page['footer']); ?>
    </div>
  </div>    
<?php endif; ?>

<?php if ($page['last']): ?>
  <div class="last">
    <?php print render($page['last']); ?>
  </div> <!-- /.last icons -->
  <?php endif; ?>
Post Reply