Example #1
0
        }
    }
    ?>
	</div>

	<!-- =================================== END OF BLOG C =================================== -->

	<div class="bSideItem">
		<h3><?php 
    echo T_('Misc');
    ?>
</h3>
		<ul>
			<?php 
    // Administrative links:
    user_login_link('<li>', '</li>');
    user_register_link('<li>', '</li>');
    user_admin_link('<li>', '</li>');
    user_profile_link('<li>', '</li>');
    user_subs_link('<li>', '</li>');
    user_logout_link('<li>', '</li>');
    ?>
		</ul>
	</div>

</div>
<!-- InstanceEndEditable --></div>
<div class="footer">
This is a demo page for <a href="http://b2evolution.net/">b2evolution</a>.
<!-- InstanceBeginEditable name="Baseline" -->
<?php 
Example #2
0
$Blog->disp('arcdirurl', 'raw');
?>
"><?php 
echo T_('Archives');
?>
</a>
		</strong>

		<p>
		<?php 
// Display a link to contact the owner of this blog (if owner accepts messages):
$Blog->contact_link(array('before' => ' [', 'after' => '] ', 'text' => T_('Contact'), 'title' => T_('Send a message to the owner of this blog...')));
?>

		<?php 
user_login_link(' [', '] ', '', '#', 'sidebar login link');
user_register_link(' [', '] ', '', '#', false, 'sidebar register link');
user_admin_link(' [', '] ');
user_logout_link(' [', '] ');
?>
		</p>
	</div>

	<hr>

	<?php 
// Please help us promote b2evolution and leave this logo on your blog:
powered_by(array('block_start' => '<div align="center">', 'block_end' => '</div>', 'img_url' => '$rsc$img/powered-by-b2evolution-120t.gif', 'img_width' => 120, 'img_height' => 32));
?>

	<?php 
Example #3
0
$Blog->disp('arcdirurl', 'raw');
?>
"><?php 
echo T_('Archives');
?>
</a>
		</strong>

		<p>
		<?php 
// Display a link to contact the owner of this blog (if owner accepts messages):
$Blog->contact_link(array('before' => ' [', 'after' => '] ', 'text' => T_('Contact'), 'title' => T_('Send a message to the owner of this blog...')));
?>

		<?php 
user_login_link(' [', '] ');
user_register_link(' [', '] ');
user_admin_link(' [', '] ');
user_logout_link(' [', '] ');
?>
		</p>
	</div>

	<hr>

	<?php 
// Please help us promote b2evolution and leave this logo on your blog:
powered_by(array('block_start' => '<div align="center">', 'block_end' => '</div>', 'img_url' => '$rsc$img/powered-by-b2evolution-120t.gif', 'img_width' => 120, 'img_height' => 32));
?>

	<?php 
Example #4
0
// Please leave this at the bottom of the page to make sure your blog gets listed on b2evolution.net
credits(array('list_start' => ' ', 'list_end' => '.<br />', 'separator' => ' / ', 'item_start' => '', 'item_end' => ''));
?>
		Design &amp; icons by <a href="http://www.ndesign-studio.com">N.Design Studio</a>. Skin by <a href="http://www.tenderfeelings.be">Tender Feelings</a> / <?php 
display_param_link($skinfaktory_links);
?>
.
	</div>
	<div class="alignright">
		<?php 
if ($Blog->get_setting('feed_content') != 'none') {
    ?>
			<a href="<?php 
    $Blog->disp('rss2_url', 'raw');
    ?>
" class="rss">Entries RSS</a>
			<a href="<?php 
    $Blog->disp('comments_rss2_url', 'raw');
    ?>
" class="rss">Comments RSS</a>
		<?php 
}
?>
		<span class="loginout"><?php 
user_login_link();
user_logout_link();
?>
</span>
	</div>
</div>
<!--credits end -->
Example #5
0
 /**
  * Display the widget!
  *
  * @param array MUST contain at least the basic display params
  */
 function display($params)
 {
     $this->init_display($params);
     // User tools:
     echo $this->disp_params['block_start'];
     echo $this->disp_params['block_title_start'];
     echo T_('User tools');
     echo $this->disp_params['block_title_end'];
     echo $this->disp_params['list_start'];
     user_login_link($this->disp_params['item_start'], $this->disp_params['item_end'], $this->disp_params['user_login_link']);
     user_register_link($this->disp_params['item_start'], $this->disp_params['item_end'], $this->disp_params['user_register_link']);
     user_admin_link($this->disp_params['item_start'], $this->disp_params['item_end'], $this->disp_params['user_admin_link']);
     user_profile_link($this->disp_params['item_start'], $this->disp_params['item_end'], $this->disp_params['user_profile_link']);
     user_subs_link($this->disp_params['item_start'], $this->disp_params['item_end'], $this->disp_params['user_subs_link']);
     user_logout_link($this->disp_params['item_start'], $this->disp_params['item_end'], $this->disp_params['user_logout_link']);
     echo $this->disp_params['list_end'];
     echo $this->disp_params['block_end'];
 }