?
Path : /home/admin/public_html/old/board/components/com_kunena/template/default/view/ |
Current File : /home/admin/public_html/old/board/components/com_kunena/template/default/view/thread.actions.php |
<?php /** * @version $Id: thread.actions.php 4336 2011-01-31 06:05:12Z severdia $ * Kunena Component * @package Kunena * * @Copyright (C) 2008 - 2011 Kunena Team. All rights reserved. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * @link http://www.kunena.org **/ // Dont allow direct linking defined ( '_JEXEC' ) or die (); ?> <!-- B: Thread Actions --> <table class="klist-actions"> <tr> <td class="klist-actions-goto"> <?php echo $this->goto ?> </td> <td class="klist-actions-forum"> <?php if ($this->thread_reply || $this->thread_subscribe || $this->thread_favorite ) : ?> <div class="kmessage-buttons-row"> <?php echo $this->thread_reply ?> <?php echo $this->thread_subscribe ?> <?php echo $this->thread_favorite ?> </div> <?php endif ?> <?php if ($this->thread_delete || $this->thread_move || $this->thread_sticky || $this->thread_lock) : ?> <div class="kmessage-buttons-row"> <?php echo $this->thread_delete ?> <?php echo $this->thread_sticky ?> <?php echo $this->thread_move ?> <?php echo $this->thread_lock ?> </div> <?php endif ?> </td> <td class="klist-actions-forum"> <?php if (isset ( $this->thread_new )) : ?> <div class="kmessage-buttons-row"> <?php echo $this->thread_new; ?> </div> <?php endif ?> <?php if (isset ( $this->thread_moderate )) : ?> <div class="kmessage-buttons-row"> <?php echo $this->thread_moderate; ?> </div> <?php endif ?> <?php if (isset ( $this->thread_merge )) : ?> <div class="kmessage-buttons-row"> <?php echo $this->thread_merge; ?> </div> <?php endif ?> </td> <td class="klist-pages-all"> <?php echo $this->pagination; ?> </td> </tr> </table> <!-- F: Thread Actions -->