1: <?php
2: /**
3: * Magento
4: *
5: * NOTICE OF LICENSE
6: *
7: * This source file is subject to the Open Software License (OSL 3.0)
8: * that is bundled with this package in the file LICENSE.txt.
9: * It is also available through the world-wide-web at this URL:
10: * http://opensource.org/licenses/osl-3.0.php
11: * If you did not receive a copy of the license and are unable to
12: * obtain it through the world-wide-web, please send an email
13: * to license@magentocommerce.com so we can send you a copy immediately.
14: *
15: * DISCLAIMER
16: *
17: * Do not edit or add to this file if you wish to upgrade Magento to newer
18: * versions in the future. If you wish to customize Magento for your
19: * needs please refer to http://www.magentocommerce.com for more information.
20: *
21: * @category Mage
22: * @package Mage_Customer
23: * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24: * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25: */
26:
27: class Mage_Customer_Block_Widget_Name extends Mage_Customer_Block_Widget_Abstract
28: {
29: public function _construct()
30: {
31: parent::_construct();
32:
33: // default template location
34: $this->setTemplate('customer/widget/name.phtml');
35: }
36:
37: /**
38: * Can show config value
39: *
40: * @param string $key
41: * @return bool
42: */
43: protected function _showConfig($key)
44: {
45: return (bool)$this->getConfig($key);
46: }
47:
48: /**
49: * Can show prefix
50: *
51: * @return bool
52: */
53: public function showPrefix()
54: {
55: return (bool)$this->_getAttribute('prefix')->getIsVisible();
56: }
57:
58: /**
59: * Define if prefix attribute is required
60: *
61: * @return bool
62: */
63: public function isPrefixRequired()
64: {
65: return (bool)$this->_getAttribute('prefix')->getIsRequired();
66: }
67:
68: /**
69: * Retrieve name prefix drop-down options
70: *
71: * @return array|bool
72: */
73: public function getPrefixOptions()
74: {
75: $prefixOptions = $this->helper('customer')->getNamePrefixOptions();
76:
77: if ($this->getObject() && !empty($prefixOptions)) {
78: $oldPrefix = $this->escapeHtml(trim($this->getObject()->getPrefix()));
79: $prefixOptions[$oldPrefix] = $oldPrefix;
80: }
81: return $prefixOptions;
82: }
83:
84: /**
85: * Define if middle name attribute can be shown
86: *
87: * @return bool
88: */
89: public function showMiddlename()
90: {
91: return (bool)$this->_getAttribute('middlename')->getIsVisible();
92: }
93:
94: /**
95: * Define if middlename attribute is required
96: *
97: * @return bool
98: */
99: public function isMiddlenameRequired()
100: {
101: return (bool)$this->_getAttribute('middlename')->getIsRequired();
102: }
103:
104: /**
105: * Define if suffix attribute can be shown
106: *
107: * @return bool
108: */
109: public function showSuffix()
110: {
111: return (bool)$this->_getAttribute('suffix')->getIsVisible();
112: }
113:
114: /**
115: * Define if suffix attribute is required
116: *
117: * @return bool
118: */
119: public function isSuffixRequired()
120: {
121: return (bool)$this->_getAttribute('suffix')->getIsRequired();
122: }
123:
124: /**
125: * Retrieve name suffix drop-down options
126: *
127: * @return array|bool
128: */
129: public function getSuffixOptions()
130: {
131: $suffixOptions = $this->helper('customer')->getNameSuffixOptions();
132: if ($this->getObject() && !empty($suffixOptions)) {
133: $oldSuffix = $this->escapeHtml(trim($this->getObject()->getSuffix()));
134: $suffixOptions[$oldSuffix] = $oldSuffix;
135: }
136: return $suffixOptions;
137: }
138:
139: /**
140: * Class name getter
141: *
142: * @return string
143: */
144: public function getClassName()
145: {
146: if (!$this->hasData('class_name')) {
147: $this->setData('class_name', 'customer-name');
148: }
149: return $this->getData('class_name');
150: }
151:
152: /**
153: * Container class name getter
154: *
155: * @return string
156: */
157: public function getContainerClassName()
158: {
159: $class = $this->getClassName();
160: $class .= $this->showPrefix() ? '-prefix' : '';
161: $class .= $this->showMiddlename() ? '-middlename' : '';
162: $class .= $this->showSuffix() ? '-suffix' : '';
163: return $class;
164: }
165:
166: /**
167: * Retrieve customer or customer address attribute instance
168: *
169: * @param string $attributeCode
170: * @return Mage_Customer_Model_Attribute|false
171: */
172: protected function _getAttribute($attributeCode)
173: {
174: if ($this->getForceUseCustomerAttributes() || $this->getObject() instanceof Mage_Customer_Model_Customer) {
175: return parent::_getAttribute($attributeCode);
176: }
177:
178: $attribute = Mage::getSingleton('eav/config')->getAttribute('customer_address', $attributeCode);
179:
180: if ($this->getForceUseCustomerRequiredAttributes() && $attribute && !$attribute->getIsRequired()) {
181: $customerAttribute = parent::_getAttribute($attributeCode);
182: if ($customerAttribute && $customerAttribute->getIsRequired()) {
183: $attribute = $customerAttribute;
184: }
185: }
186:
187: return $attribute;
188: }
189:
190: /**
191: * Retrieve store attribute label
192: *
193: * @param string $attributeCode
194: * @return string
195: */
196: public function getStoreLabel($attributeCode)
197: {
198: $attribute = $this->_getAttribute($attributeCode);
199: return $attribute ? $this->__($attribute->getStoreLabel()) : '';
200: }
201: }
202: