content_seo.php

Go to the documentation of this file.
00001 <?php
00002 
00006 class Content_Seo extends Object_Seo
00007 {
00013     protected function _getSeoUrl( $oContent )
00014     {
00015         $oEncoder = oxSeoEncoderContent::getInstance();
00016         $oEncoder->getContentUrl( $oContent );
00017 
00018         return parent::_getSeoUrl( $oContent );
00019     }
00020 
00025     protected function _getObject( $sOxid )
00026     {
00027         // load object
00028         $oContent = oxNew( 'oxcontent' );
00029         if ( $oContent->loadInLang( $this->_iEditLang, $sOxid ) ) {
00030             return $oContent;
00031         }
00032     }
00033 
00038     protected function _getType()
00039     {
00040         return 'oxcontent';
00041     }
00042 
00047     protected function _getStdUrl( $sOxid )
00048     {
00049         $oContent = oxNew( 'oxcontent' );
00050         $oContent->loadInLang( $this->_iEditLang, $sOxid );
00051         return $oContent->getLink();
00052     }
00053 }

Generated on Thu Dec 4 12:04:55 2008 for OXID eShop CE by  doxygen 1.5.5