Option.php 3.37 KB
<?php
/**
 * @package  anc_image
 * @category magento
 * @mailto	code [at] netz.coop
 * @author	netz.coop eG* 
 * @copyright (c) 2014, netz.coop eG
 * 
 *   This program is free software: you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 * 
 *
 * @anc_image_eingabetyp
 *	@eingabetyp_Redundanz Achtung!!! weitere Extensions die davon betroffen sind und selben Inhalt benötigen!!!!: AncImage, AncPlaylist, AncAddressimport
 */
class Anc_Image_Model_Catalog_Product_Option extends Mage_Catalog_Model_Product_Option
{
//	public function __construct() {
//		D::li('Anc_Image_Model_Catalog_Product_Option');
//	}
	
    const OPTION_GROUP_ANCPLAYLIST       = 'ancplaylist';
    const OPTION_TYPE_ANCPLAYLIST_TYPE   = 'ancplaylist_type';
    const OPTION_GROUP_ANCIMAGE       = 'ancimage';
    const OPTION_TYPE_ANCIMAGE_TYPE   = 'ancimage_type';	
	const OPTION_GROUP_ANCTEXT       = 'anctext';
    const OPTION_TYPE_ANCTEXT_TYPE   = 'anctext_type';	
    const OPTION_GROUP_ANCADDRESSIMPORT       = 'ancaddressimport';
    const OPTION_TYPE_ANCADDRESSIMPORT_TYPE   = 'ancaddressimport_type';		
    /**
     * Get group name of option by given option type
     *
     * @param string $type
     * @return string
     */
    public function getGroupByType($type = null)
    {
        if (is_null($type)) {
            $type = $this->getType();
        }
 
        $group = parent::getGroupByType($type);
        if( $group === '' && $type === self::OPTION_TYPE_ANCPLAYLIST_TYPE ){
            $group = self::OPTION_GROUP_ANCPLAYLIST;
        } else if( $group === '' && $type === self::OPTION_TYPE_ANCIMAGE_TYPE ){
            $group = self::OPTION_GROUP_ANCIMAGE;
        } else if( $group === '' && $type === self::OPTION_TYPE_ANCTEXT_TYPE ){
            $group = self::OPTION_GROUP_ANCTEXT;
        } else if( $group === '' && $type === self::OPTION_TYPE_ANCADDRESSIMPORT_TYPE ){
            $group = self::OPTION_GROUP_ANCADDRESSIMPORT;			
        }
        return $group;
    }
    /**
     * Group model factory
     *
     * @param string $type Option type
     * @return Mage_Catalog_Model_Product_Option_Group_Abstract
     */
    public function groupFactory($type)
    {
        if( $type === self::OPTION_TYPE_ANCPLAYLIST_TYPE ){
            return Mage::getModel('anc_playlist/catalog_product_option_type_ancplaylisttype');
        } else if( $type === self::OPTION_TYPE_ANCIMAGE_TYPE ){
            return Mage::getModel('anc_image/catalog_product_option_type_ancimagetype');
        } else if( $type === self::OPTION_TYPE_ANCTEXT_TYPE ){
            return Mage::getModel('anc_text/catalog_product_option_type_anctexttype');
        } else if( $type === self::OPTION_TYPE_ANCADDRESSIMPORT_TYPE ){
            return Mage::getModel('anc_addressimport/catalog_product_option_type_ancaddressimporttype');			
        }
        return parent::groupFactory($type);
    }
}