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
00029 $sChosenArtCat = $this->_getCategoryTree( "artcattree", $sChosenArtCat, $soxId );
00030
00031
00032 $oCategory->loadInLang( $this->_iEditLang, $soxId );
00033
00034
00035 $oOtherLang = $oCategory->getAvailableInLangs();
00036 if (!isset($oOtherLang[$this->_iEditLang])) {
00037
00038 $oCategory->loadInLang( key($oOtherLang), $soxId );
00039 }
00040
00041
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
00066 $aColumns = array();
00067 include_once 'inc/'.strtolower(__CLASS__).'.inc.php';
00068 $this->_aViewData['oxajax'] = $aColumns;
00069
00070 return "popups/category_main.tpl";
00071 }
00072 return "category_main.tpl";
00073 }
00074
00080 public function getSortableFields()
00081 {
00082 $aSkipFields = array( "OXID", "OXSHOPID", "OXSHOPINCL", "OXSHOPEXCL", "OXPARENTID", "OXACTIVE", "OXACTIVEFROM"
00083 , "OXACTIVETO", "OXSHORTDESC"
00084 , "OXUNITNAME", "OXUNITQUANTITY", "OXEXTURL", "OXURLDESC", "OXURLIMG", "OXVAT"
00085 , "OXTHUMB", "OXPICSGENERATED", "OXPIC1", "OXPIC2", "OXPIC3", "OXPIC4", "OXPIC5"
00086 , "OXPIC6", "OXPIC7", "OXPIC8", "OXPIC9", "OXPIC10", "OXPIC11", "OXPIC12", "OXSTOCKFLAG"
00087 , "OXSTOCKTEXT", "OXNOSTOCKTEXT", "OXDELIVERY", "OXFILE", "OXSEARCHKEYS", "OXTEMPLATE"
00088 , "OXQUESTIONEMAIL", "OXISSEARCH", "OXISCONFIGURABLE", "OXBUNDLEID", "OXFOLDER", "OXSUBCLASS"
00089 , "OXREMINDACTIVE", "OXREMINDAMOUNT", "OXVENDORID", "OXMANUFACTURERID", "OXSKIPDISCOUNTS"
00090 , "OXBLFIXEDPRICE", "OXICON", "OXVARSELECT", "OXAMITEMID", "OXAMTASKID", "OXPIXIEXPORT", "OXPIXIEXPORTED", "OXSORT"
00091 , "OXUPDATEPRICE", "OXUPDATEPRICEA", "OXUPDATEPRICEB", "OXUPDATEPRICEC", "OXUPDATEPRICETIME", "OXISDOWNLOADABLE"
00092 );
00093 $aSkipFields = array_merge($aSkipFields, oxShopMetaData::getInstance()->getShopFields());
00094
00095 $oDbHandler = oxNew( "oxDbMetaDataHandler" );
00096 $aFields = array_merge( $oDbHandler->getMultilangFields( 'oxarticles' ), $oDbHandler->getSinglelangFields( 'oxarticles', 0 ) );
00097 $aFields = array_diff( $aFields, $aSkipFields );
00098 $aFields = array_unique( $aFields );
00099
00100 return $aFields;
00101 }
00102
00108 public function save()
00109 {
00110 parent::save();
00111
00112 $myConfig = $this->getConfig();
00113
00114 $soxId = $this->getEditObjectId();
00115 $aParams = oxConfig::getParameter( "editval");
00116
00117
00118 if ( !isset( $aParams['oxcategories__oxactive']))
00119 $aParams['oxcategories__oxactive'] = 0;
00120 if ( !isset( $aParams['oxcategories__oxhidden']))
00121 $aParams['oxcategories__oxhidden'] = 0;
00122 if ( !isset( $aParams['oxcategories__oxdefsortmode']))
00123 $aParams['oxcategories__oxdefsortmode'] = 0;
00124
00125
00126 if ($aParams['oxcategories__oxvat'] === '')
00127 $aParams['oxcategories__oxvat'] = null;
00128
00129
00130 $aParams['oxcategories__oxshopid'] = oxSession::getVar( "actshop" );
00131
00132 $oCategory = oxNew( "oxcategory" );
00133
00134 if ( $soxId != "-1") {
00135 $this->resetCounter( "catArticle", $soxId );
00136 $oCategory->load( $soxId);
00137 $oCategory->loadInLang( $this->_iEditLang, $soxId );
00138
00139 $myUtilsPic = oxUtilsPic::getInstance();
00140
00141 $myUtilsPic->overwritePic( $oCategory, 'oxcategories', 'oxthumb', 'TC', '0', $aParams, $myConfig->getPictureDir(false) );
00142 $myUtilsPic->overwritePic( $oCategory, 'oxcategories', 'oxicon', 'CICO', 'icon', $aParams, $myConfig->getPictureDir(false) );
00143 $myUtilsPic->overwritePic( $oCategory, 'oxcategories', 'oxpromoicon', 'PICO', 'icon', $aParams, $myConfig->getPictureDir(false) );
00144
00145 } else {
00146
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
00177 return str_replace( '&lang=', '&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
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 }