category_main.php

Go to the documentation of this file.
00001 <?php
00002 
00009 class Category_Main extends oxAdminDetails
00010 {
00017     public function render()
00018     {
00019         $myConfig  = $this->getConfig();
00020 
00021         parent::render();
00022 
00023         $this->_aViewData["edit"] = $oCategory = oxNew( "oxcategory" );;
00024         $sChosenArtCat = oxConfig::getParameter( "artcat");
00025         $soxId = $this->_aViewData["oxid"] = $this->getEditObjectId();
00026         if ( $soxId != "-1" && isset( $soxId)) {
00027 
00028             // generating category tree for select list
00029             $sChosenArtCat = $this->_getCategoryTree( "artcattree", $sChosenArtCat, $soxId );
00030 
00031             // load object
00032             $oCategory->loadInLang( $this->_iEditLang, $soxId );
00033 
00034 
00035             $oOtherLang = $oCategory->getAvailableInLangs();
00036             if (!isset($oOtherLang[$this->_iEditLang])) {
00037                 // echo "language entry doesn't exist! using: ".key($oOtherLang);
00038                 $oCategory->loadInLang( key($oOtherLang), $soxId );
00039             }
00040 
00041             // remove already created languages
00042             $aLang = array_diff ( oxLang::getInstance()->getLanguageNames(), $oOtherLang );
00043             if ( count( $aLang))
00044                 $this->_aViewData["posslang"] = $aLang;
00045 
00046             foreach ( $oOtherLang as $id => $language) {
00047                 $oLang = new oxStdClass();
00048                 $oLang->sLangDesc = $language;
00049                 $oLang->selected = ($id == $this->_iEditLang);
00050                 $this->_aViewData["otherlang"][$id] =  clone $oLang;
00051             }
00052 
00053             if ( $oCategory->oxcategories__oxparentid->value == 'oxrootid')
00054                 $oCategory->oxcategories__oxparentid->setValue('');
00055 
00056             $this->_getCategoryTree( "cattree", $oCategory->oxcategories__oxparentid->value, $oCategory->oxcategories__oxid->value, true, $oCategory->oxcategories__oxshopid->value);
00057 
00058             $this->_aViewData["defsort"] = $oCategory->oxcategories__oxdefsort->value;
00059         } else
00060             $this->_getCategoryTree( "cattree", "", "", true, $myConfig->getShopId());
00061 
00062         $this->_aViewData["sortableFields"] = $this->getSortableFields();
00063 
00064         if ( oxConfig::getParameter("aoc") ) {            
00065             $oCategoryMainAjax = oxNew( 'category_main_ajax' );
00066             $this->_aViewData['oxajax'] = $oCategoryMainAjax->getColumns();
00067 
00068             return "popups/category_main.tpl";
00069         }
00070         //print_r($this);
00071         return "category_main.tpl";
00072     }
00073 
00079     public function getSortableFields()
00080     {
00081         $aSkipFields = array( "OXID", "OXSHOPID", "OXSHOPINCL", "OXSHOPEXCL", "OXPARENTID", "OXACTIVE", "OXACTIVEFROM"
00082             , "OXACTIVETO", "OXSHORTDESC"
00083             , "OXUNITNAME", "OXUNITQUANTITY", "OXEXTURL", "OXURLDESC", "OXURLIMG", "OXVAT"
00084             , "OXTHUMB", "OXPICSGENERATED", "OXPIC1", "OXPIC2", "OXPIC3", "OXPIC4", "OXPIC5"
00085             , "OXPIC6", "OXPIC7", "OXPIC8", "OXPIC9", "OXPIC10", "OXPIC11", "OXPIC12", "OXSTOCKFLAG"
00086             , "OXSTOCKTEXT", "OXNOSTOCKTEXT", "OXDELIVERY", "OXFILE", "OXSEARCHKEYS", "OXTEMPLATE"
00087             , "OXQUESTIONEMAIL", "OXISSEARCH", "OXISCONFIGURABLE", "OXBUNDLEID", "OXFOLDER", "OXSUBCLASS"
00088             , "OXREMINDACTIVE", "OXREMINDAMOUNT", "OXVENDORID", "OXMANUFACTURERID", "OXSKIPDISCOUNTS"
00089             , "OXBLFIXEDPRICE", "OXICON", "OXVARSELECT", "OXAMITEMID", "OXAMTASKID", "OXPIXIEXPORT", "OXPIXIEXPORTED", "OXSORT"
00090             , "OXUPDATEPRICE", "OXUPDATEPRICEA", "OXUPDATEPRICEB", "OXUPDATEPRICEC", "OXUPDATEPRICETIME", "OXISDOWNLOADABLE"
00091         );
00092         $aSkipFields = array_merge($aSkipFields, oxShopMetaData::getInstance()->getShopFields());
00093 
00094         $oDbHandler = oxNew( "oxDbMetaDataHandler" );
00095         $aFields = array_merge( $oDbHandler->getMultilangFields( 'oxarticles' ), $oDbHandler->getSinglelangFields( 'oxarticles', 0 ) );
00096         $aFields = array_diff( $aFields, $aSkipFields );
00097         $aFields = array_unique( $aFields );
00098 
00099         return $aFields;
00100     }
00101 
00107     public function save()
00108     {
00109         parent::save();
00110 
00111         $myConfig  = $this->getConfig();
00112 
00113         $soxId = $this->getEditObjectId();
00114         $aParams = oxConfig::getParameter( "editval");
00115 
00116         // checkbox handling
00117         if ( !isset( $aParams['oxcategories__oxactive']))
00118             $aParams['oxcategories__oxactive'] = 0;
00119         if ( !isset( $aParams['oxcategories__oxhidden']))
00120             $aParams['oxcategories__oxhidden'] = 0;
00121         if ( !isset( $aParams['oxcategories__oxdefsortmode']))
00122             $aParams['oxcategories__oxdefsortmode'] = 0;
00123 
00124         // null values
00125         if ($aParams['oxcategories__oxvat'] === '')
00126             $aParams['oxcategories__oxvat'] = null;
00127 
00128             // shopid
00129             $aParams['oxcategories__oxshopid'] = oxSession::getVar( "actshop" );
00130 
00131         $oCategory = oxNew( "oxcategory" );
00132 
00133         if ( $soxId != "-1") {
00134             $this->resetCounter( "catArticle", $soxId );
00135             $oCategory->load( $soxId);
00136             $oCategory->loadInLang( $this->_iEditLang, $soxId );
00137 
00138             $myUtilsPic = oxUtilsPic::getInstance();
00139             // #1173M - not all pic are deleted, after article is removed
00140             $myUtilsPic->overwritePic( $oCategory, 'oxcategories', 'oxthumb', 'TC', '0', $aParams, $myConfig->getPictureDir(false) );
00141             $myUtilsPic->overwritePic( $oCategory, 'oxcategories', 'oxicon', 'CICO', 'icon', $aParams, $myConfig->getPictureDir(false) );
00142             $myUtilsPic->overwritePic( $oCategory, 'oxcategories', 'oxpromoicon', 'PICO', 'icon', $aParams, $myConfig->getPictureDir(false) );
00143 
00144         } else {
00145             //#550A - if new category is made then is must be default activ
00146             //#4051: Impossible to create inactive category
00147             //$aParams['oxcategories__oxactive'] = 1;
00148             $aParams['oxcategories__oxid'] = null;
00149         }
00150 
00151 
00152         $oCategory->setLanguage(0);
00153         if ( isset( $aParams["oxcategories__oxlongdesc"] ) ) {
00154             $aParams["oxcategories__oxlongdesc"] = $this->_processLongDesc( $aParams["oxcategories__oxlongdesc"] );
00155         }
00156 
00157 
00158         $oCategory->assign( $aParams );
00159         $oCategory->setLanguage($this->_iEditLang);
00160 
00161         $oCategory = oxUtilsFile::getInstance()->processFiles( $oCategory );
00162         $oCategory->save();
00163             
00164         $this->setEditObjectId( $oCategory->getId() );        
00165     }
00166 
00174     protected function _processLongDesc( $sValue )
00175     {
00176         // workaround for firefox showing &lang= as &9001;= entity, mantis#0001272
00177         return str_replace( '&lang=', '&amp;lang=', $sValue );
00178     }
00179 
00185     public function saveinnlang()
00186     {
00187         $this->save();
00188     }
00189 
00195     public function deletePicture()
00196     {
00197         $myConfig = $this->getConfig();
00198 
00199         if ( $myConfig->isDemoShop() ) {
00200             // disabling uploading pictures if this is demo shop
00201             $oEx = new oxExceptionToDisplay();
00202             $oEx->setMessage( 'CATEGORY_PICTURES_UPLOADISDISABLED' );
00203             oxUtilsView::getInstance()->addErrorToDisplay( $oEx, false );
00204 
00205             return;
00206         }
00207 
00208         $sOxId = $this->getEditObjectId();
00209         $sField = oxConfig::getParameter('masterPicField');
00210         if (empty($sField)) {
00211             return;
00212         }
00213 
00214         $oItem = oxNew('oxCategory');
00215         $oItem->load($sOxId);
00216         $this->_deleteCatPicture($oItem, $sField);
00217     }
00218 
00227     protected function _deleteCatPicture(oxCategory $oItem, $sField)
00228     {
00229         $myConfig = $this->getConfig();
00230         $sItemKey = 'oxcategories__'.$sField;
00231 
00232 
00233         switch ($sField) {
00234             case 'oxthumb':
00235                 $sImgType = 'TC';
00236                 break;
00237 
00238             case 'oxicon':
00239                 $sImgType = 'CICO';
00240                 break;
00241 
00242             case 'oxpromoicon':
00243                 $sImgType = 'PICO';
00244                 break;
00245 
00246             default:
00247                 $sImgType = false;
00248         }
00249 
00250         if ($sImgType !== false) {
00251             $myUtilsPic = oxUtilsPic::getInstance();
00252             $sDir = $myConfig->getPictureDir(false);
00253             $myUtilsPic->safePictureDelete($oItem->$sItemKey->value, $sDir . oxUtilsFile::getInstance()->getImageDirByType($sImgType), 'oxcategories', $sField);
00254 
00255             $oItem->$sItemKey = new oxField();
00256             $oItem->save();
00257         }
00258     }
00259 }