File: /home2/obrechts/bad.public_html.bad/wordpress/wp-content/themes/atmosphere-2010/sidebar.php
<div id="sidebar-menu"><!-- Container Div -->
<div id="primary" class="widget-area" role="complementary">
<ul class="xoxo">
<?php if ( ! dynamic_sidebar( 'primary-widget-area' ) ) : ?>
<?php $shortname = 'drcms'; ?>
<?php global $themeOptions; ?>
<?php if( !$themeOptions[$shortname .'_hide_menu'] ) : ?>
<li><h3 class="widget-title"><?php _e('Pages'); ?></h3></li>
<li><a href="<?php echo home_url(); ?>">Home</a></li>
<?php wp_list_pages('sort_column=menu_order&depth=1&title_li='); ?>
<?php endif; ?>
<?php if( !$themeOptions[$shortname .'_hide_categories'] ) : ?>
<li><h3 class="widget-title"><?php _e('Categories'); ?></h3></li>
<?php wp_list_categories('title_li='); ?>
<?php endif; ?>
<?php if( !$themeOptions[$shortname .'_hide_archives'] ) : ?>
<li><h3 class="widget-title"><?php _e('Archives'); ?></h3></li>
<?php wp_get_archives('type=monthly'); ?>
<?php endif; ?>
<?php if( !$themeOptions[$shortname .'_hide_calendar'] ) : ?>
<li><h3 class="widget-title"><?php _e('Calendar'); ?></h3></li>
<li><?php get_calendar(); ?></li>
<?php endif; ?>
<?php if( !$themeOptions[$shortname .'_hide_links'] ) : ?>
<li><h3 class="widget-title"><?php _e('Links'); ?></h3></li>
<?php wp_list_bookmarks('title_li=&categorize=0'); ?>
<?php endif; ?>
<?php endif; // end primary widget area ?>
</ul> <!-- xoxo -->
</div><!-- #primary .widget-area -->
<?php
if ( is_active_sidebar( 'secondary-widget-area' ) ) : ?>
<div id="secondary" class="widget-area" role="complementary">
<ul class="xoxo">
<?php dynamic_sidebar( 'secondary-widget-area' ); ?>
</ul>
</div><!-- #secondary .widget-area -->
<?php endif; ?>
<div id="tertiary" class="widget-area" role="complementary">
<ul class="xoxo">
<?php if ( ! dynamic_sidebar( 'tertiary-widget-area' ) ) : ?>
<?php $shortname = 'drcms'; ?>
<?php global $themeOptions; ?>
<?php if( !$themeOptions[$shortname .'_hide_meta'] ) : ?>
<li><h3 class="widget-title"><?php _e('Meta'); ?></h3></li>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS'); ?>"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
<li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php _e('The latest comments to all posts in RSS'); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
<?php wp_meta(); ?>
<?php endif; ?>
<?php if( !$themeOptions[$shortname .'_hide_search'] ) : ?>
<li><h3 class="widget-title" style="margin-bottom: 5px;"><?php _e('Search'); ?></h3></li>
<li id="search">
<div>
<form id="searchform" method="get" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<input type="text" id="s" name="s" class="searchbox" /><input type="submit" value="Go" class="searchbutton" />
</form>
</div>
</li>
<?php endif; ?>
<?php endif; ?>
</ul>
</div> <!-- #tertiary -->
</div> <!-- Sidebar Menu -->