oxcategory.php

Go to the documentation of this file.
00001 <?php
00002 
00009 class oxCategory extends oxI18n implements oxIUrl
00010 {
00011 
00017     protected $_aSubCats = array();
00018 
00024     protected $_aContentCats = array();
00025 
00031     protected $_sClassName = 'oxcategory';
00032 
00038     protected $_iNrOfArticles;
00039 
00045     protected $_blIsVisible;
00046 
00052     protected $_blExpanded;
00053 
00059     protected $_blHasSubCats;
00060 
00066     protected $_blHasVisibleSubCats;
00067 
00073     protected $_blIsSeoObject = true;
00074 
00080     protected $_blUseLazyLoading = false;
00081 
00087     protected $_sDynImageDir = null;
00088 
00094     protected $_blTopCategory = null;
00095 
00101     protected $_aStdUrls = array();
00102 
00108     protected $_aSeoUrls = array();
00109 
00115     protected static $_aCatAttributes = array();
00116 
00122     protected $_oParent = null;
00123 
00127     public function __construct()
00128     {
00129         parent::__construct();
00130         $this->init('oxcategories');
00131     }
00132 
00138     public function getDefaultSorting()
00139     {
00140         return $this->oxcategories__oxdefsort->value;
00141     }
00142 
00148     public function getDefaultSortingMode()
00149     {
00150         return $this->oxcategories__oxdefsortmode->value;
00151     }
00152 
00160     public function __get($sName)
00161     {
00162         switch ($sName) {
00163             case 'aSubCats':
00164                 return $this->_aSubCats;
00165                 break;
00166             case 'aContent':
00167                 return $this->_aContentCats;
00168                 break;
00169             case 'iArtCnt':
00170                 return $this->getNrOfArticles();
00171                 break;
00172             case 'isVisible':
00173                 return $this->getIsVisible();
00174                 break;
00175             case 'expanded':
00176                 return $this->getExpanded();
00177                 break;
00178             case 'hasSubCats':
00179                 return $this->getHasSubCats();
00180                 break;
00181             case 'hasVisibleSubCats':
00182                 return $this->getHasVisibleSubCats();
00183                 break;
00184             case 'openlink':
00185             case 'closelink':
00186             case 'link':
00187                 //case 'toListLink':
00188                 //case 'noparamlink':
00189                 return $this->getLink();
00190                 break;
00191             case 'dimagedir':
00192                 return $this->getPictureUrl();
00193                 break;
00194         }
00195         return parent::__get($sName);
00196     }
00197 
00198 
00206     protected function _loadFromDb($sOXID)
00207     {
00208         $sSelect = $this->buildSelectString(array("`{$this->getViewName()}`.`oxid`" => $sOXID));
00209         $aData = oxDb::getDb(oxDb::FETCH_MODE_ASSOC)->getRow($sSelect);
00210 
00211         return $aData;
00212     }
00213 
00221     public function load($sOXID)
00222     {
00223 
00224         $aData = $this->_loadFromDb($sOXID);
00225 
00226         if ($aData) {
00227             $this->assign($aData);
00228 
00229             return true;
00230         }
00231 
00232         return false;
00233     }
00234 
00235 
00243     public function assign($dbRecord)
00244     {
00245         $this->_iNrOfArticles = null;
00246 
00247         return parent::assign($dbRecord);
00248     }
00249 
00257     public function delete($sOXID = null)
00258     {
00259         if (!$this->getId()) {
00260             $this->load($sOXID);
00261         }
00262 
00263         $sOXID = isset($sOXID) ? $sOXID : $this->getId();
00264 
00265 
00266         $myConfig = $this->getConfig();
00267         $oDb = oxDb::getDb();
00268         $blRet = false;
00269 
00270         if ($this->oxcategories__oxright->value == ($this->oxcategories__oxleft->value + 1)) {
00271             $myUtilsPic = oxRegistry::get("oxUtilsPic");
00272             $sDir = $myConfig->getPictureDir(false);
00273 
00274             // only delete empty categories
00275             // #1173M - not all pic are deleted, after article is removed
00276             $myUtilsPic->safePictureDelete($this->oxcategories__oxthumb->value, $sDir . oxRegistry::get("oxUtilsFile")->getImageDirByType('TC'), 'oxcategories', 'oxthumb');
00277             $myUtilsPic->safePictureDelete($this->oxcategories__oxicon->value, $sDir . oxRegistry::get("oxUtilsFile")->getImageDirByType('CICO'), 'oxcategories', 'oxicon');
00278             $myUtilsPic->safePictureDelete($this->oxcategories__oxpromoicon->value, $sDir . oxRegistry::get("oxUtilsFile")->getImageDirByType('PICO'), 'oxcategories', 'oxpromoicon');
00279 
00280             $sAdd = " and oxshopid = '" . $this->getShopId() . "' ";
00281 
00282             $oDb->execute(
00283                 "UPDATE oxcategories SET OXLEFT = OXLEFT - 2
00284                                            WHERE  OXROOTID = " . $oDb->quote($this->oxcategories__oxrootid->value) . "
00285                             AND OXLEFT >   " . ((int) $this->oxcategories__oxleft->value) . $sAdd
00286             );
00287 
00288             $oDb->execute(
00289                 "UPDATE oxcategories SET OXRIGHT = OXRIGHT - 2
00290                                            WHERE  OXROOTID = " . $oDb->quote($this->oxcategories__oxrootid->value) . "
00291                             AND OXRIGHT >   " . ((int) $this->oxcategories__oxright->value) . $sAdd
00292             );
00293 
00294             // delete entry
00295             $blRet = parent::delete($sOXID);
00296 
00297             $sOxidQuoted = $oDb->quote($sOXID);
00298             // delete links to articles
00299             $oDb->execute("delete from oxobject2category where oxobject2category.oxcatnid=$sOxidQuoted ");
00300 
00301             // #657 ADDITIONAL delete links to attributes
00302             $oDb->execute("delete from oxcategory2attribute where oxcategory2attribute.oxobjectid=$sOxidQuoted ");
00303 
00304             // A. removing assigned:
00305             // - deliveries
00306             $oDb->execute("delete from oxobject2delivery where oxobject2delivery.oxobjectid=$sOxidQuoted ");
00307             // - discounts
00308             $oDb->execute("delete from oxobject2discount where oxobject2discount.oxobjectid=$sOxidQuoted ");
00309 
00310             oxRegistry::get("oxSeoEncoderCategory")->onDeleteCategory($this);
00311         }
00312 
00313         return $blRet;
00314     }
00315 
00321     public function getSubCats()
00322     {
00323         return $this->_aSubCats;
00324     }
00325 
00333     public function getSubCat($sKey)
00334     {
00335         return $this->_aSubCats[$sKey];
00336     }
00337 
00343     public function setSubCats($aCats)
00344     {
00345         $this->_aSubCats = $aCats;
00346 
00347         foreach ($aCats as $oCat) {
00348 
00349             // keeping ref. to parent
00350             $oCat->setParentCategory($this);
00351 
00352             if ($oCat->getIsVisible()) {
00353                 $this->setHasVisibleSubCats(true);
00354             }
00355         }
00356     }
00357 
00364     public function setSubCat($oCat, $sKey = null)
00365     {
00366         if ($sKey) {
00367             $this->_aSubCats[$sKey] = $oCat;
00368         } else {
00369             $this->_aSubCats[] = $oCat;
00370         }
00371 
00372         // keeping ref. to parent
00373         $oCat->setParentCategory($this);
00374 
00375         if ($oCat->getIsVisible()) {
00376             $this->setHasVisibleSubCats(true);
00377         }
00378     }
00379 
00385     public function getContentCats()
00386     {
00387         return $this->_aContentCats;
00388     }
00389 
00395     public function setContentCats($aContent)
00396     {
00397         $this->_aContentCats = $aContent;
00398     }
00399 
00406     public function setContentCat($oContent, $sKey = null)
00407     {
00408         if ($sKey) {
00409             $this->_aContentCats[$sKey] = $oContent;
00410         } else {
00411             $this->_aContentCats[] = $oContent;
00412         }
00413     }
00414 
00420     public function getNrOfArticles()
00421     {
00422         $myConfig = $this->getConfig();
00423 
00424         if (!isset($this->_iNrOfArticles)
00425             && !$this->isAdmin()
00426             && (
00427                 $myConfig->getConfigParam('bl_perfShowActionCatArticleCnt')
00428                 || $myConfig->getConfigParam('blDontShowEmptyCategories')
00429             )
00430         ) {
00431 
00432             if ($this->isPriceCategory()) {
00433                 $this->_iNrOfArticles = oxRegistry::get("oxUtilsCount")->getPriceCatArticleCount($this->getId(), $this->oxcategories__oxpricefrom->value, $this->oxcategories__oxpriceto->value);
00434             } else {
00435                 $this->_iNrOfArticles = oxRegistry::get("oxUtilsCount")->getCatArticleCount($this->getId());
00436             }
00437         }
00438 
00439         return (int) $this->_iNrOfArticles;
00440     }
00441 
00447     public function setNrOfArticles($iNum)
00448     {
00449         $this->_iNrOfArticles = $iNum;
00450     }
00451 
00457     public function getIsVisible()
00458     {
00459         if (!isset($this->_blIsVisible)) {
00460 
00461             if ($this->getConfig()->getConfigParam('blDontShowEmptyCategories')) {
00462                 $blEmpty = ($this->getNrOfArticles() < 1) && !$this->getHasVisibleSubCats();
00463             } else {
00464                 $blEmpty = false;
00465             }
00466 
00467             $this->_blIsVisible = !($blEmpty || $this->oxcategories__oxhidden->value);
00468         }
00469 
00470         return $this->_blIsVisible;
00471     }
00472 
00478     public function setIsVisible($blVisible)
00479     {
00480         $this->_blIsVisible = $blVisible;
00481     }
00482 
00488     public function getPictureUrl()
00489     {
00490         if ($this->_sDynImageDir === null) {
00491             $sThisShop = $this->oxcategories__oxshopid->value;
00492             $this->_sDynImageDir = $this->getConfig()->getPictureUrl(null, false, null, null, $sThisShop);
00493         }
00494 
00495         return $this->_sDynImageDir;
00496     }
00497 
00506     public function getBaseSeoLink($iLang, $iPage = 0)
00507     {
00508         $oEncoder = oxRegistry::get("oxSeoEncoderCategory");
00509         if (!$iPage) {
00510             return $oEncoder->getCategoryUrl($this, $iLang);
00511         }
00512 
00513         return $oEncoder->getCategoryPageUrl($this, $iPage, $iLang);
00514     }
00515 
00523     public function getLink($iLang = null)
00524     {
00525         if (!oxRegistry::getUtils()->seoIsActive() ||
00526             (isset($this->oxcategories__oxextlink) && $this->oxcategories__oxextlink->value)
00527         ) {
00528             return $this->getStdLink($iLang);
00529         }
00530 
00531         if ($iLang === null) {
00532             $iLang = $this->getLanguage();
00533         }
00534 
00535         if (!isset($this->_aSeoUrls[$iLang])) {
00536             $this->_aSeoUrls[$iLang] = $this->getBaseSeoLink($iLang);
00537         }
00538 
00539         return $this->_aSeoUrls[$iLang];
00540     }
00541 
00547     public function setLink($sLink)
00548     {
00549         $iLang = $this->getLanguage();
00550         if (oxRegistry::getUtils()->seoIsActive()) {
00551             $this->_aSeoUrls[$iLang] = $sLink;
00552         } else {
00553             $this->_aStdUrls[$iLang] = $sLink;
00554         }
00555     }
00556 
00564     public function getSqlActiveSnippet($blForceCoreTable = null)
00565     {
00566         $sQ = parent::getSqlActiveSnippet($blForceCoreTable);
00567 
00568         $sTable = $this->getViewName($blForceCoreTable);
00569         $sQ .= (strlen($sQ) ? ' and ' : '') . " $sTable.oxhidden = '0' ";
00570 
00571 
00572         return "( $sQ ) ";
00573     }
00574 
00584     public function getBaseStdLink($iLang, $blAddId = true, $blFull = true)
00585     {
00586         if (isset($this->oxcategories__oxextlink) && $this->oxcategories__oxextlink->value) {
00587             return $this->oxcategories__oxextlink->value;
00588         }
00589 
00590         $sUrl = '';
00591         if ($blFull) {
00592             //always returns shop url, not admin
00593             $sUrl = $this->getConfig()->getShopUrl($iLang, false);
00594         }
00595 
00596         //always returns shop url, not admin
00597         return $sUrl . "index.php?cl=alist" . ($blAddId ? "&amp;cnid=" . $this->getId() : "");
00598     }
00599 
00608     public function getStdLink($iLang = null, $aParams = array())
00609     {
00610         if (isset($this->oxcategories__oxextlink) && $this->oxcategories__oxextlink->value) {
00611             return oxRegistry::get("oxUtilsUrl")->processUrl($this->oxcategories__oxextlink->value, false);
00612         }
00613 
00614         if ($iLang === null) {
00615             $iLang = $this->getLanguage();
00616         }
00617 
00618         if (!isset($this->_aStdUrls[$iLang])) {
00619             $this->_aStdUrls[$iLang] = $this->getBaseStdLink($iLang);
00620         }
00621 
00622         return oxRegistry::get("oxUtilsUrl")->processUrl($this->_aStdUrls[$iLang], true, $aParams, $iLang);
00623     }
00624 
00630     public function getExpanded()
00631     {
00632         return $this->_blExpanded;
00633     }
00634 
00640     public function setExpanded($blExpanded)
00641     {
00642         $this->_blExpanded = $blExpanded;
00643     }
00644 
00650     public function getHasSubCats()
00651     {
00652         if (!isset($this->_blHasSubCats)) {
00653             $this->_blHasSubCats = $this->oxcategories__oxright->value > $this->oxcategories__oxleft->value + 1;
00654         }
00655 
00656         return $this->_blHasSubCats;
00657     }
00658 
00664     public function getHasVisibleSubCats()
00665     {
00666         if (!isset($this->_blHasVisibleSubCats)) {
00667             $this->_blHasVisibleSubCats = false;
00668         }
00669 
00670         return $this->_blHasVisibleSubCats;
00671     }
00672 
00678     public function setHasVisibleSubCats($blHasVisibleSubcats)
00679     {
00680         if ($blHasVisibleSubcats && !$this->_blHasVisibleSubCats) {
00681             unset($this->_blIsVisible);
00682             if ($this->_oParent instanceof oxCategory) {
00683                 $this->_oParent->setHasVisibleSubCats(true);
00684             }
00685         }
00686         $this->_blHasVisibleSubCats = $blHasVisibleSubcats;
00687     }
00688 
00694     public function getAttributes()
00695     {
00696         $sActCat = $this->getId();
00697 
00698         $sKey = md5($sActCat . serialize(oxRegistry::getSession()->getVariable('session_attrfilter')));
00699         if (!isset(self::$_aCatAttributes[$sKey])) {
00700             $oAttrList = oxNew("oxAttributeList");
00701             $oAttrList->getCategoryAttributes($sActCat, $this->getLanguage());
00702             self::$_aCatAttributes[$sKey] = $oAttrList;
00703         }
00704 
00705         return self::$_aCatAttributes[$sKey];
00706     }
00707 
00715     public function getCatInLang($oActCategory = null)
00716     {
00717         $oCategoryInDefaultLanguage = oxNew("oxCategory");
00718         if ($this->isPriceCategory()) {
00719             // get it in base language
00720             $oCategoryInDefaultLanguage = oxNew("oxCategory");
00721             $oCategoryInDefaultLanguage->loadInLang(0, $this->getId());
00722         } else {
00723             $oCategoryInDefaultLanguage = oxNew("oxCategory");
00724             $oCategoryInDefaultLanguage->loadInLang(0, $oActCategory->getId());
00725         }
00726 
00727         return $oCategoryInDefaultLanguage;
00728     }
00729 
00735     public function setParentCategory($oCategory)
00736     {
00737         $this->_oParent = $oCategory;
00738     }
00739 
00745     public function getParentCategory()
00746     {
00747         $oCat = null;
00748 
00749         // loading only if parent id is not rootid
00750         if ($this->oxcategories__oxparentid->value && $this->oxcategories__oxparentid->value != 'oxrootid') {
00751 
00752             // checking if object itself has ref to parent
00753             if ($this->_oParent) {
00754                 $oCat = $this->_oParent;
00755             } else {
00756                 $oCat = oxNew('oxCategory');
00757                 if (!$oCat->load($this->oxcategories__oxparentid->value)) {
00758                     $oCat = null;
00759                 } else {
00760                     $this->_oParent = $oCat;
00761                 }
00762             }
00763         }
00764 
00765         return $oCat;
00766     }
00767 
00775     public static function getRootId($sCategoryId)
00776     {
00777         if (!isset($sCategoryId)) {
00778             return;
00779         }
00780         $oDb = oxDb::getDb();
00781 
00782         return $oDb->getOne('select oxrootid from ' . getViewName('oxcategories') . ' where oxid = ' . $oDb->quote($sCategoryId));
00783     }
00784 
00785 
00793     public function assignViewableRecord($sSelect)
00794     {
00795         if ($this->assignRecord($sSelect)) {
00796             return true;
00797         }
00798 
00799 
00800         return false;
00801     }
00802 
00808     protected function _insert()
00809     {
00810 
00811 
00812 
00813         if ($this->oxcategories__oxparentid->value != "oxrootid") {
00814             // load parent
00815             $oParent = oxNew("oxCategory");
00816             //#M317 check if parent is loaded
00817             if (!$oParent->load($this->oxcategories__oxparentid->value)) {
00818                 return false;
00819             }
00820 
00821             $sAdd = " and oxshopid = '" . $this->getShopId() . "' ";
00822 
00823             // update existing nodes
00824             $oDb = oxDb::getDb();
00825             $oDb->execute(
00826                 "UPDATE oxcategories SET OXLEFT = OXLEFT + 2
00827                                            WHERE  OXROOTID = " . $oDb->quote($oParent->oxcategories__oxrootid->value) . "
00828                             AND OXLEFT >   " . ((int) $oParent->oxcategories__oxright->value) . "
00829                             AND OXRIGHT >= " . ((int) $oParent->oxcategories__oxright->value) . $sAdd
00830             );
00831 
00832 
00833             $oDb->execute(
00834                 "UPDATE oxcategories SET OXRIGHT = OXRIGHT + 2
00835                                            WHERE  OXROOTID = " . $oDb->quote($oParent->oxcategories__oxrootid->value) . "
00836                             AND OXRIGHT >= " . ((int) $oParent->oxcategories__oxright->value) . $sAdd
00837             );
00838 
00839             if (!$this->getId()) {
00840                 $this->setId();
00841             }
00842 
00843             $this->oxcategories__oxrootid = new oxField($oParent->oxcategories__oxrootid->value, oxField::T_RAW);
00844             $this->oxcategories__oxleft = new oxField($oParent->oxcategories__oxright->value, oxField::T_RAW);
00845             $this->oxcategories__oxright = new oxField($oParent->oxcategories__oxright->value + 1, oxField::T_RAW);
00846 
00847             return parent::_insert();
00848         } else {
00849             // root entry
00850             if (!$this->getId()) {
00851                 $this->setId();
00852             }
00853 
00854             $this->oxcategories__oxrootid = new oxField($this->getId(), oxField::T_RAW);
00855             $this->oxcategories__oxleft = new oxField(1, oxField::T_RAW);
00856             $this->oxcategories__oxright = new oxField(2, oxField::T_RAW);
00857 
00858             return parent::_insert();
00859         }
00860     }
00861 
00867     protected function _update()
00868     {
00869 
00870         $this->setUpdateSeo(true);
00871         $this->_setUpdateSeoOnFieldChange('oxtitle');
00872 
00873         $oDb = oxDb::getDb();
00874         $sOldParentID = $oDb->getOne("select oxparentid from oxcategories where oxid = " . $oDb->quote($this->getId()), false, false);
00875 
00876         if ($this->_blIsSeoObject && $this->isAdmin()) {
00877             oxRegistry::get("oxSeoEncoderCategory")->markRelatedAsExpired($this);
00878         }
00879 
00880         $blRes = parent::_update();
00881 
00882         // #872C - need to update category tree oxleft and oxright values (nested sets),
00883         // then sub trees are moved inside one root, or to another root.
00884         // this is done in 3 basic steps
00885         // 1. increase oxleft and oxright values of target root tree by $iTreeSize, where oxleft>=$iMoveAfter , oxright>=$iMoveAfter
00886         // 2. modify current subtree, we want to move by adding $iDelta to it's oxleft and oxright,  where oxleft>=$sOldParentLeft and oxright<=$sOldParentRight values,
00887         //    in this step we also modify rootid's if they were changed
00888         // 3. decreasing oxleft and oxright values of current root tree, where oxleft >= $sOldParentRight+1 , oxright >= $sOldParentRight+1
00889 
00890         // did we change position in tree ?
00891         if ($this->oxcategories__oxparentid->value != $sOldParentID) {
00892             $sOldParentLeft = $this->oxcategories__oxleft->value;
00893             $sOldParentRight = $this->oxcategories__oxright->value;
00894 
00895             $iTreeSize = $sOldParentRight - $sOldParentLeft + 1;
00896 
00897             $sNewRootID = $oDb->getOne("select oxrootid from oxcategories where oxid = " . $oDb->quote($this->oxcategories__oxparentid->value), false, false);
00898 
00899             //If empty rootID, we set it to categorys oxid
00900             if ($sNewRootID == "") {
00901                 //echo "<br>* ) Creating new root tree ( {$this->_sOXID} )";
00902                 $sNewRootID = $this->getId();
00903             }
00904 
00905             $sNewParentLeft = $oDb->getOne("select oxleft from oxcategories where oxid = " . $oDb->quote($this->oxcategories__oxparentid->value), false, false);
00906 
00907             //if(!$sNewParentLeft){
00908             //the current node has become root node, (oxrootid == "oxrootid")
00909             //    $sNewParentLeft = 0;
00910             //}
00911 
00912             $iMoveAfter = $sNewParentLeft + 1;
00913 
00914             //New parentid can not be set to it's child
00915             if ($sNewParentLeft > $sOldParentLeft && $sNewParentLeft < $sOldParentRight && $this->oxcategories__oxrootid->value == $sNewRootID) {
00916                 //echo "<br>* ) Can't asign category to it's child";
00917 
00918                 //Restoring old parentid, stoping further actions
00919                 $sRestoreOld = "UPDATE oxcategories SET OXPARENTID = " . $oDb->quote($sOldParentID) . " WHERE oxid = " . $oDb->quote($this->getId());
00920                 $oDb->execute($sRestoreOld);
00921 
00922                 return false;
00923             }
00924 
00925             //Old parent will be shifted too, if it is in the same tree
00926             if ($sOldParentLeft > $iMoveAfter && $this->oxcategories__oxrootid->value == $sNewRootID) {
00927                 $sOldParentLeft += $iTreeSize;
00928                 $sOldParentRight += $iTreeSize;
00929             }
00930 
00931             $iDelta = $iMoveAfter - $sOldParentLeft;
00932 
00933             //echo "Size=$iTreeSize, NewStart=$iMoveAfter, delta=$iDelta";
00934 
00935             $sAddOld = " and oxshopid = '" . $this->getShopId() . "' and OXROOTID = " . $oDb->quote($this->oxcategories__oxrootid->value) . ";";
00936             $sAddNew = " and oxshopid = '" . $this->getShopId() . "' and OXROOTID = " . $oDb->quote($sNewRootID) . ";";
00937 
00938             //Updating everything after new position
00939             $oDb->execute("UPDATE oxcategories SET OXLEFT = (OXLEFT + " . $iTreeSize . ") WHERE OXLEFT >= " . $iMoveAfter . $sAddNew);
00940             $oDb->execute("UPDATE oxcategories SET OXRIGHT = (OXRIGHT + " . $iTreeSize . ") WHERE OXRIGHT >= " . $iMoveAfter . $sAddNew);
00941             //echo "<br>1.) + $iTreeSize, >= $iMoveAfter";
00942 
00943             $sChangeRootID = "";
00944             if ($this->oxcategories__oxrootid->value != $sNewRootID) {
00945                 //echo "<br>* ) changing root IDs ( {$this->oxcategories__oxrootid->value} -> {$sNewRootID} )";
00946                 $sChangeRootID = ", OXROOTID=" . $oDb->quote($sNewRootID);
00947             }
00948 
00949             //Updating subtree
00950             $oDb->execute("UPDATE oxcategories SET OXLEFT = (OXLEFT + " . $iDelta . "), OXRIGHT = (OXRIGHT + " . $iDelta . ") " . $sChangeRootID . " WHERE OXLEFT >= " . $sOldParentLeft . " AND OXRIGHT <= " . $sOldParentRight . $sAddOld);
00951             //echo "<br>2.) + $iDelta, >= $sOldParentLeft and <= $sOldParentRight";
00952 
00953             //Updating everything after old position
00954             $oDb->execute("UPDATE oxcategories SET OXLEFT = (OXLEFT - " . $iTreeSize . ") WHERE OXLEFT >=   " . ($sOldParentRight + 1) . $sAddOld);
00955             $oDb->execute("UPDATE oxcategories SET OXRIGHT = (OXRIGHT - " . $iTreeSize . ") WHERE OXRIGHT >=   " . ($sOldParentRight + 1) . $sAddOld);
00956             //echo "<br>3.) - $iTreeSize, >= ".($sOldParentRight+1);
00957         }
00958 
00959         if ($blRes && $this->_blIsSeoObject && $this->isAdmin()) {
00960             oxRegistry::get("oxSeoEncoderCategory")->markRelatedAsExpired($this);
00961         }
00962 
00963         return $blRes;
00964     }
00965 
00975     protected function _setFieldData($sFieldName, $sValue, $iDataType = oxField::T_TEXT)
00976     {
00977         //preliminary quick check saves 3% of execution time in category lists by avoiding redundant strtolower() call
00978         if ($sFieldName[2] == 'l' || $sFieldName[2] == 'L' || (isset($sFieldName[16]) && ($sFieldName[16] == 'l' || $sFieldName[16] == 'L'))) {
00979             if ('oxlongdesc' === strtolower($sFieldName) || 'oxcategories__oxlongdesc' === strtolower($sFieldName)) {
00980                 $iDataType = oxField::T_RAW;
00981             }
00982         }
00983 
00984         return parent::_setFieldData($sFieldName, $sValue, $iDataType);
00985     }
00986 
00987 
00993     public function getIconUrl()
00994     {
00995         if (($sIcon = $this->oxcategories__oxicon->value)) {
00996             $oConfig = $this->getConfig();
00997             $sSize = $oConfig->getConfigParam('sCatIconsize');
00998             if (!isset($sSize)) {
00999                 $sSize = $oConfig->getConfigParam('sIconsize');
01000             }
01001 
01002             return oxRegistry::get("oxPictureHandler")->getPicUrl("category/icon/", $sIcon, $sSize);
01003         }
01004     }
01005 
01011     public function getThumbUrl()
01012     {
01013         if (($sIcon = $this->oxcategories__oxthumb->value)) {
01014             $sSize = $this->getConfig()->getConfigParam('sCatThumbnailsize');
01015 
01016             return oxRegistry::get("oxPictureHandler")->getPicUrl("category/thumb/", $sIcon, $sSize);
01017         }
01018     }
01019 
01025     public function getPromotionIconUrl()
01026     {
01027         if (($sIcon = $this->oxcategories__oxpromoicon->value)) {
01028             $sSize = $this->getConfig()->getConfigParam('sCatPromotionsize');
01029 
01030             return oxRegistry::get("oxPictureHandler")->getPicUrl("category/promo_icon/", $sIcon, $sSize);
01031         }
01032     }
01033 
01042     public function getPictureUrlForType($sPicName, $sPicType)
01043     {
01044         if ($sPicName) {
01045             return $this->getPictureUrl() . $sPicType . '/' . $sPicName;
01046         } else {
01047             return false;
01048         }
01049     }
01050 
01056     public function isTopCategory()
01057     {
01058         if ($this->_blTopCategory == null) {
01059             $this->_blTopCategory = $this->oxcategories__oxparentid->value == 'oxrootid';
01060         }
01061 
01062         return $this->_blTopCategory;
01063     }
01064 
01070     public function isPriceCategory()
01071     {
01072         return (bool) ($this->oxcategories__oxpricefrom->value || $this->oxcategories__oxpriceto->value);
01073     }
01074 
01081     public function getLongDesc()
01082     {
01083         if (isset($this->oxcategories__oxlongdesc) && $this->oxcategories__oxlongdesc instanceof oxField) {
01085             $oUtilsView = oxRegistry::get("oxUtilsView");
01086             return oxRegistry::get("oxUtilsView")->parseThroughSmarty($this->oxcategories__oxlongdesc->getRawValue(), $this->getId() . $this->getLanguage(), null, true);
01087         }
01088     }
01089 
01095     public function getShortDescription()
01096     {
01097         return $this->oxcategories__oxdesc->value;
01098     }
01099 
01105     public function getTitle()
01106     {
01107         return $this->oxcategories__oxtitle->value;
01108     }
01109 
01119     public function getFieldFromSubCategories($sField = 'OXID', $sOXID = null)
01120     {
01121         if (!$sOXID) {
01122             $sOXID = $this->getId();
01123         }
01124         if (!$sOXID) {
01125             return false;
01126         }
01127 
01128         $sTable = $this->getViewName();
01129         $sField = "`{$sTable}`.`{$sField}`";
01130         $sSql = "SELECT $sField FROM `{$sTable}` WHERE `OXROOTID` = ? AND `OXPARENTID` != 'oxrootid'";
01131         $aResult = oxDb::getDb()->getCol($sSql, array($sOXID));
01132 
01133         return $aResult;
01134     }
01135 }