Default Class 'oxUBase' not found in /www/htdocs

Hallo Zusammen,
ich muss mal wieder ein Problme posten,woher auch immer das kommt. Immer wenn ich in meinen shop http://shop.mineutec.deauf Link gehe kommt folgender Fehler:

Fatal error: Class 'oxUBase' not found in /www/htdocs/v166690/eshop/links.php on line 31

abeile 31 in der Datei links.php steht:

PHP Code:
class Links extends oxUBase
{
    
/**
     * Current class template name.
     * @var string
     */
    
protected $_sThisTemplate 'page/info/links.tpl';

    
/**
     * Links list.
     * @var object
     */
    
protected $_oLinksList null;

    
/**
     * Template variable getter. Returns links list
     *
     * @return object
     */
    
public function getLinksList()
    {
        if ( 
$this->_oLinksList === null ) {
            
$this->_oLinksList false;
            
// Load links
            
$oLinksList oxNew"oxlist" );
            
$oLinksList->init"oxlinks" );
            
$oLinksList->getList();
            
$this->_oLinksList $oLinksList;
        }
        return 
$this->_oLinksList;
    } 

Vielen Dank für Eure Hilfe

Gruß Micha
Reply With Quote