| Current Path : /home/lejardintz/www/components/com_kunena/template/blue_eagle/html/topics/ |
| Current File : /home/lejardintz/www/components/com_kunena/template/blue_eagle/html/topics/user_embed.php |
<?php
/**
* Kunena Component
* @package Kunena.Template.Blue_Eagle
* @subpackage Topics
*
* @copyright (C) 2008 - 2016 Kunena Team. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link https://www.kunena.org
**/
defined ( '_JEXEC' ) or die ();
?>
<form action="<?php echo KunenaRoute::_('index.php?option=com_kunena') ?>" method="post" name="ktopicsform">
<input type="hidden" name="view" value="topics" />
<?php echo JHtml::_( 'form.token' ); ?>
<div class="kblock kflat">
<div class="kheader">
<?php if (!empty($this->topicActions)) : ?>
<span class="kcheckbox select-toggle"><input class="kcheckall" type="checkbox" name="toggle" value="" /></span>
<?php endif; ?>
<h2><span><?php echo $this->escape($this->title); ?></span></h2>
</div>
<div class="kcontainer">
<div class="kbody">
<table class="kblocktable" id="kflattable">
<?php if (empty ( $this->topics ) && empty ( $this->subcategories )) : ?>
<tr class="krow2"><td class="kcol-first"><?php echo JText::_('COM_KUNENA_VIEW_NO_TOPICS') ?></td></tr>
<?php else : ?>
<?php $this->displayRows (); ?>
<?php if ( !empty($this->topicActions) || !empty($this->embedded) ) : ?>
<!-- Bulk Actions -->
<tr class="krow1">
<td colspan="<?php echo empty($this->topicActions) ? 5 : 6 ?>" class="kcol krowmoderation">
<?php if (!empty($this->moreUri)) echo JHtml::_('kunenaforum.link', $this->moreUri, JText::_('COM_KUNENA_MORE'), null, null, 'follow'); ?>
<?php if (!empty($this->topicActions)) : ?>
<?php echo JHtml::_('select.genericlist', $this->topicActions, 'task', 'class="inputbox kchecktask" size="1"', 'value', 'text', 0, 'kchecktask'); ?>
<?php if ($this->actionMove) :
$options = array (JHtml::_ ( 'select.option', '0', JText::_('COM_KUNENA_BULK_CHOOSE_DESTINATION') ));
echo JHtml::_('kunenaforum.categorylist', 'target', 0, $options, array(), 'class="inputbox fbs" size="1" disabled="disabled"', 'value', 'text', 0, 'kchecktarget');
endif;?>
<input type="submit" name="kcheckgo" class="kbutton" value="<?php echo JText::_('COM_KUNENA_GO') ?>" />
<?php endif; ?>
</td>
</tr>
<!-- /Bulk Actions -->
<?php endif; ?>
<?php endif; ?>
</table>
</div>
</div>
</div>
</form>