Server : LiteSpeed System : Linux server 3.10.0-1160.90.1.el7.x86_64 #1 SMP Thu May 4 15:21:22 UTC 2023 x86_64 User : alsaif ( 1057) PHP Version : 7.4.33 Disable Function : show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/alsaif/public_html/components/com_allvideoshare/views/categories/ |
<?php
/*
* @version $Id: view.html.php 3.5.0 2020-01-25 $
* @package All Video Share
* @copyright Copyright (C) 2012-2020 MrVinoth
* @license GNU/GPL http://www.gnu.org/licenses/gpl-2.0.html
*/
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
class AllVideoShareViewCategories extends AllVideoShareView {
public function display( $tpl = null ) {
$app = JFactory::getApplication();
$this->config = AllVideoShareUtils::getConfig();
$model = $this->getModel();
$this->params = $app->getParams();
$menu = $app->getMenu()->getActive();
$this->menuTitle = $this->params->get( 'page_heading', @$menu->title );
$this->rows = $this->params->get( 'no_of_rows', $this->config->rows );
$this->cols = $this->params->get( 'no_of_cols', $this->config->cols );
$limit = (int) $this->rows * (int) $this->cols;
$this->items = $model->getItems( $this->params, $limit );
$this->pagination = $model->getCategoriesPagination();
$this->feedHTML = $this->getFeedHTML();
$this->setHeaders();
parent::display( $tpl );
}
public function getFeedHTML() {
$html = '';
if ( $this->config->show_feed ) {
$url = JRoute::_( 'index.php?option=com_allvideoshare&view=categories' );
$url .= ! strpos( $url, '?' ) ? '?format=feed&type=rss' : '&format=feed&type=rss';
$image = JURI::root( true ) . "/components/com_allvideoshare/assets/images/rss.png";
$html = sprintf( '<a class="avs-rss-icon" href="%s" target="_blank"><img src="%s" /></a>', $url, $image );
}
return $html;
}
public function setHeaders() {
$doc = JFactory::getDocument();
if ( $this->params->get( 'menu-meta_keywords' ) ) {
$doc->setMetadata( 'keywords', $this->params->get( 'menu-meta_keywords' ) );
}
if ( $this->params->get( 'menu-meta_description' ) ) {
$doc->setDescription( $this->params->get( 'menu-meta_description' ) );
}
if ( $this->params->get( 'robots' ) ) {
$doc->setMetadata( 'robots', $this->params->get( 'robots' ) );
}
if ( $this->config->load_bootstrap_css ) {
$doc->addStyleSheet( AllVideoShareUtils::prepareURL( 'components/com_allvideoshare/assets/css/bootstrap.css' ), 'text/css', 'screen' );
}
if ( $this->config->load_icomoon_font ) {
$doc->addStyleSheet( JURI::root( true ) . '/media/jui/css/icomoon.css', 'text/css', 'screen' );
}
$doc->addStyleSheet( AllVideoShareUtils::prepareURL( 'components/com_allvideoshare/assets/css/allvideoshare.css' ), 'text/css', 'screen' );
if ( ! empty( $this->config->custom_css ) ) {
$doc->addStyleDeclaration( $this->config->custom_css );
}
}
}