Your IP : 216.73.216.219


Current Path : /home/pteabiscqq/www/administrator/components/com_k2/models/
Upload File :
Current File : /home/pteabiscqq/www/administrator/components/com_k2/models/model.php

<?php
/**
 * @version    2.11 (rolling release)
 * @package    K2
 * @author     JoomlaWorks https://www.joomlaworks.net
 * @copyright  Copyright (c) 2009 - 2024 JoomlaWorks Ltd. All rights reserved.
 * @license    GNU/GPL: https://gnu.org/licenses/gpl.html
 */

// no direct access
defined('_JEXEC') or die;

jimport('joomla.application.component.model');

if (version_compare(JVERSION, '2.5', 'ge')) {
    class K2Model extends JModelLegacy
    {
        public static function addIncludePath($path = '', $prefix = 'K2Model')
        {
            return parent::addIncludePath($path, $prefix);
        }
    }
} else {
    class K2Model extends JModel
    {
        public function addIncludePath($path = '', $prefix = 'K2Model')
        {
            return parent::addIncludePath($path);
        }
    }
}