1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 
<?php

/* --------------------------------------------------------------
   CustomerAddonValueStorage.inc.php 2016-06-27
   Gambio GmbH
   http://www.gambio.de
   Copyright (c) 2016 Gambio GmbH
   Released under the GNU General Public License (Version 2)
   [http://www.gnu.org/licenses/gpl-2.0.html]
   --------------------------------------------------------------
*/

MainFactory::load_class('AbstractAddonValueStorage');

/**
 * Class CustomerAddonValueStorage
 *
 * @category   System
 * @package    Customer
 * @subpackage Storages
 */
class CustomerAddonValueStorage extends AbstractAddonValueStorage
{
    /**
     * Get Container Type
     *
     * Returns the container class type.
     *
     * @return string
     */
    protected function _getContainerType()
    {
        return 'CustomerInterface';
    }
    
    
    /**
     * Get External Fields Array
     * 
     * This method is for registering the addon values which are not stored inside the 'addon_values_storage' table.
     *
     * The returning array must be multidimensional and contains a set of database tables with corresponding primary
     * keys and the fields which are not stored in the addon_values_storage table.
     *
     * Example:
     * $externalFields = array();
     *
     * // Icon height and width.
     * $externalFields['categories']['primary_key'] = 'categories_id';
     * $externalFields['categories']['fields']      = array(
     * 'categories_icon_w' => 'iconWidth',
     * 'categories_icon_h' => 'iconHeight'
     * );
     *
     * // Other categories related data
     * $externalFields['table_name']['primary_key'] = 'categories_id';
     * $externalFields['table_name']['fields']      = array(
     * 'column_name1' => 'addonValueKey1',
     * 'column_name2' => 'addonValueKey2',
     * );
     *
     * return $externalFields;
     *
     * @return array
     */
    protected function _getExternalFieldsArray()
    {
        $externalFields = array();

        return $externalFields;
    }
}