00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 class Mage_Customer_Model_Group extends Mage_Core_Model_Abstract
00033 {
00034 const XML_PATH_DEFAULT_ID = 'customer/create_account/default_group';
00035 const NOT_LOGGED_IN_ID = 0;
00036 const CUST_GROUP_ALL = 32000;
00037
00038
00039
00040
00041
00042
00043 protected $_eventPrefix = 'customer_group';
00044
00045
00046
00047
00048
00049
00050
00051
00052 protected $_eventObject = 'object';
00053
00054 protected static $_taxClassIds = array();
00055
00056 protected function _construct()
00057 {
00058 $this->_init('customer/group');
00059 }
00060
00061
00062
00063
00064
00065
00066 public function setCode($value)
00067 {
00068 return $this->setCustomerGroupCode($value);
00069 }
00070
00071
00072
00073
00074
00075
00076 public function getCode()
00077 {
00078 return $this->getCustomerGroupCode();
00079 }
00080
00081 public function getTaxClassId($groupId=null)
00082 {
00083 if (!is_null($groupId)) {
00084 if (empty(self::$_taxClassIds[$groupId])) {
00085 $this->load($groupId);
00086 self::$_taxClassIds[$groupId] = $this->getData('tax_class_id');
00087 }
00088 $this->setData('tax_class_id', self::$_taxClassIds[$groupId]);
00089 }
00090 return $this->getData('tax_class_id');
00091 }
00092
00093
00094 public function usesAsDefault()
00095 {
00096 $data = Mage::getConfig()->getStoresConfigByPath(self::XML_PATH_DEFAULT_ID);
00097 if (in_array($this->getId(), $data)) {
00098 return true;
00099 }
00100 return false;
00101 }
00102 }