Файловый менеджер - Редактировать - /var/www/html/item.zip
Ðазад
PK ! g��R� � parent.phpnu �[��� <?php /** * @package Komento * @copyright Copyright (C) 2012 Stack Ideas Private Limited. All rights reserved. * @license GNU/GPL, see LICENSE.php * * Komento is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * See COPYRIGHT.php for copyright notices and details. */ defined( '_JEXEC' ) or die( 'Restricted access' ); ?> <div class="parentContainer hidden" loaded="<?php echo $parent ? '1' : '0'; ?>"> <?php if( !empty($parent) ) { $this->set( 'row', $parent ); // todo: configurable echo $this->fetch( 'comment/item/avatar.php' ); echo $this->fetch( 'comment/item/author.php' ); echo $this->fetch( 'comment/item/time.php' ); echo $this->fetch( 'comment/item/text.php' ); } ?> </div> PK ! @ie�� � author.phpnu �[��� <?php /** * @package Komento * @copyright Copyright (C) 2012 Stack Ideas Private Limited. All rights reserved. * @license GNU/GPL, see LICENSE.php * * Komento is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * See COPYRIGHT.php for copyright notices and details. */ defined( '_JEXEC' ) or die( 'Restricted access' ); $nofollow = $this->config->get( 'links_nofollow' ) ? ' rel="nofollow"' : ''; ?> <h3 class="kmt-author" itemprop="creator" itemscope itemtype="http://schema.org/Person"> <?php if( $row->author->guest ) { if( !empty( $row->url ) && $this->config->get( 'enable_guest_link' ) ) { ?> <a href="<?php echo FH::escape( $row->url ); ?>"<?php echo $nofollow; ?><?php if( $this->config->get( 'enable_schema' ) ) echo ' itemprop="url"'; ?>> <?php } } else { ?> <a href="<?php echo $row->author->getProfileLink( FH::escape( $row->email ) ); ?>"<?php if( $this->config->get( 'enable_schema' ) ) echo ' itemprop="url"'; ?>> <?php } ?> <span<?php if( $this->config->get( 'enable_schema' ) ) echo ' itemprop="name"'; ?>><?php echo $row->name; ?></span> <?php if( $row->author->guest ) { if( !empty( $row->url ) && $this->config->get( 'enable_guest_link' ) ) { ?> </a> <?php } } else { ?> </a> <?php } ?> </h3> PK ! ��*{ { rankauthor.phpnu �[��� <?php /** * @package Komento * @copyright Copyright (C) 2012 Stack Ideas Private Limited. All rights reserved. * @license GNU/GPL, see LICENSE.php * * Komento is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * See COPYRIGHT.php for copyright notices and details. */ defined( '_JEXEC' ) or die( 'Restricted access' ); if( $this->config->get( 'enable_rank_bar' ) ) { $userRank = ( $row->author->getCommentCount() / KT::model('comments')->getTotalComment() ) * 100; if( !$row->author->guest ) { ?> <div class="kmt-rank kmt-rank--author"> <div class="kmt-rank-bar"> <div class="kmt-rank-progress" style="width: <?php echo $userRank; ?>%;"></div> </div> </div> <?php } } PK ! �q~kf f info.phpnu �[��� <?php /** * @package Komento * @copyright Copyright (C) Stack Ideas Sdn Bhd. All rights reserved. * @license GNU/GPL, see LICENSE.php * Komento is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * See COPYRIGHT.php for copyright notices and details. */ defined('_JEXEC') or die('Unauthorized Access'); ?> <?php if ($this->config->get('enable_info') && $row->modified_by) { ?> <span class="commentInfo kmt-info"> <?php $modified = $row->modified; if ($this->config->get('enable_lapsed_time')) { $modified = FH::date()->getLapsedTime($row->modified); } ?> <?php echo JText::sprintf('COM_KOMENTO_COMMENT_EDITTED_BY', $modified, KT::user($row->modified_by)->getName()); ?> <!-- Extended data for schema purposes --> <?php if ($this->config->get('enable_schema')) { ?> <span class="hidden" itemprop="editor" itemscope itemtype="http://schema.org/Person"> <span itemprop="name"><?php echo KT::user($row->modified_by)->getName(); ?></span> </span> <time class="hidden" itemprop="dateModified" datetime="<?php echo FH::date($row->modified)->format('c'); ?>"></time> <?php } ?> </span> <?php } else { ?> <span class="commentInfo kmt-info hidden"></span> <?php } PK ! ��}�l l rank.phpnu �[��� <?php /** * @package Komento * @copyright Copyright (C) 2012 Stack Ideas Private Limited. All rights reserved. * @license GNU/GPL, see LICENSE.php * * Komento is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * See COPYRIGHT.php for copyright notices and details. */ defined( '_JEXEC' ) or die( 'Restricted access' ); if( $this->config->get( 'enable_rank_bar' ) ) { $userRank = ( $row->author->getCommentCount() / KT::model( 'comments' )->getTotalComment() ) * 100; if( !$row->author->guest ) { ?> <div class="kmt-rank"> <div class="kmt-rank-bar"> <div class="kmt-rank-progress" style="width: <?php echo $userRank; ?>%;"></div> </div> </div> <?php } } PK ! �/�� � featurebutton.phpnu �[��� <?php /** * @package Komento * @copyright Copyright (C) 2012 Stack Ideas Private Limited. All rights reserved. * @license GNU/GPL, see LICENSE.php * Komento is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * See COPYRIGHT.php for copyright notices and details. */ defined('_JEXEC') or die('Restricted access'); ?> <?php if ($this->my->allow('feature_comment')) { ?> <li> <?php if ($row->featured) { ?> <a class="featureButton kmt-feature cancel" href="javascript:void(0);"><?php echo JText::_('COM_KOMENTO_COMMENT_UNFEATURE'); ?></a> <?php } else { ?> <a class="featureButton kmt-feature" href="javascript:void(0);"><?php echo JText::_('COM_KOMENTO_COMMENT_FEATURE'); ?></a> <?php } ?> <li> <?php } ?> PK ! j��� � location.phpnu �[��� <?php /** * @package Komento * @copyright Copyright (C) Stack Ideas Sdn Bhd. All rights reserved. * @license GNU/GPL, see LICENSE.php * Komento is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * See COPYRIGHT.php for copyright notices and details. */ defined('_JEXEC') or die('Unauthorized Access'); if ($this->config->get('enable_location')) { ?> <div class="kmt-location mt-5 mb-5"<?php if( $this->config->get( 'enable_schema' ) ) echo ' itemprop="contentLocation" itemscope itemtype="http://schema.org/Place"'; ?>> <?php if( $row->address && $row->latitude && $row->longitude ) { ?> <?php echo $this->fd->html('icon.font', 'fdi fa fa-map-marker'); ?> <?php echo JText::_('COM_KOMENTO_COMMENT_FROM');?> <a href="http://maps.google.com/maps?z=15&q=<?php echo FH::escape( $row->latitude ); ?>,<?php echo FH::escape( $row->longitude );?>" target="_blank"><?php echo FH::escape( $row->address );?></a> <?php } else { ?> <?php if( $row->address ) { ?> <?php echo $this->fd->html('icon.font', 'fdi fa fa-map-marker'); ?> <?php echo JText::_( 'COM_KOMENTO_COMMENT_FROM' ); ?><span<?php if( $this->config->get( 'enable_schema' ) ) echo ' itemprop="address"'; ?>><?php echo FH::escape( $row->address ); ?></span> <?php } ?> <?php } ?> <!-- Extended data for schema purposes --> <?php if( $this->config->get( 'enable_schema' ) ) { ?> <span class="hidden" itemprop="geo" itemscope itemtype="http://schema.org/GeoCoordinates"> <span itemprop="latitude"><?php echo FH::escape( $row->longitude ); ?></span> <span itemprop="longitude"><?php echo FH::escape( $row->latitude ); ?></span> </span> <span class="hidden" itemprop="map">http://maps.google.com/maps?z=15&q=<?php echo FH::escape( $row->latitude );?>,<?php echo FH::escape( $row->longitude );?></span> <?php } ?> </div> <?php } PK ! M��� � likesbutton.phpnu �[��� <?php /** * @package Komento * @copyright Copyright (C) 2012 Stack Ideas Private Limited. All rights reserved. * @license GNU/GPL, see LICENSE.php * Komento is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * See COPYRIGHT.php for copyright notices and details. */ defined('_JEXEC') or die('Restricted access'); ?> <?php if ($this->config->get('enable_likes') && $this->my->allow('like_comment')) { ?> <div class="kmt-like-wrap"> <!-- Likes counter --> <b class="likesCounter kmt-like-counter"><i></i><span><?php echo $row->likes; ?></span></b> <!-- Like/Unlike button --> <?php if ($row->liked) { ?> <a class="likeButton kmt-btn kmt-like cancel" href="javascript:void(0);" title="<?php echo JText::_('COM_KOMENTO_COMMENT_UNLIKE'); ?>"><span><?php echo JText::_('COM_KOMENTO_COMMENT_UNLIKE'); ?></span></a> <?php } else { ?> <a class="likeButton kmt-btn kmt-like" href="javascript:void(0);" title="<?php echo JText::_('COM_KOMENTO_COMMENT_LIKE'); ?>"><span><?php echo JText::_('COM_KOMENTO_COMMENT_LIKE'); ?></span></a> <?php } ?> </div> <?php } ?> PK ! g��R� � parent.phpnu �[��� PK ! @ie�� � � author.phpnu �[��� PK ! ��*{ { � rankauthor.phpnu �[��� PK ! �q~kf f t info.phpnu �[��� PK ! ��}�l l rank.phpnu �[��� PK ! �/�� � � featurebutton.phpnu �[��� PK ! j��� � � location.phpnu �[��� PK ! M��� � �"