Version Notes
Fixed Abstract.php not found issue.
Download this release
Release Info
| Developer | Clarion Tech |
| Extension | Clarion_Customerattribute |
| Version | 1.0.1 |
| Comparing to | |
| See all releases | |
Code changes from version 1.0.0 to 1.0.1
- app/code/community/Clarion/Customerattribute/Block/Adminhtml/Customerattribute/Edit/Main/{Abstract.php → Main.php} +4 -4
- app/code/community/Clarion/Customerattribute/Block/Adminhtml/Customerattribute/Edit/Options/{Abstract.php → Options.php} +2 -1
- app/code/community/Clarion/Customerattribute/Block/Adminhtml/Customerattribute/Edit/Tab/Main.php +1 -1
- app/code/community/Clarion/Customerattribute/Block/Adminhtml/Customerattribute/Edit/Tab/Options.php +2 -1
- app/design/frontend/base/default/template/clarion/customerattribute/form/edit.phtml +1 -1
- app/design/frontend/base/default/template/clarion/customerattribute/form/register.phtml +1 -1
- package.xml +5 -5
- skin/frontend/base/default/images/clarion/customerattribute/grid-cal.gif +0 -0
app/code/community/Clarion/Customerattribute/Block/Adminhtml/Customerattribute/Edit/Main/{Abstract.php → Main.php}
RENAMED
|
@@ -6,7 +6,7 @@
|
|
| 6 |
* @package Clarion_Customerattribute
|
| 7 |
* @author Clarion Magento Team
|
| 8 |
*/
|
| 9 |
-
|
| 10 |
{
|
| 11 |
protected $_attribute = null;
|
| 12 |
|
|
@@ -27,7 +27,7 @@ abstract class Clarion_Customerattribute_Block_Adminhtml_Customerattribute_Edit
|
|
| 27 |
/**
|
| 28 |
* Preparing default form elements for editing attribute
|
| 29 |
*
|
| 30 |
-
* @return
|
| 31 |
*/
|
| 32 |
protected function _prepareForm()
|
| 33 |
{
|
|
@@ -153,7 +153,7 @@ abstract class Clarion_Customerattribute_Block_Adminhtml_Customerattribute_Edit
|
|
| 153 |
/**
|
| 154 |
* Initialize form fileds values
|
| 155 |
*
|
| 156 |
-
* @return
|
| 157 |
*/
|
| 158 |
protected function _initFormValues()
|
| 159 |
{
|
|
@@ -166,7 +166,7 @@ abstract class Clarion_Customerattribute_Block_Adminhtml_Customerattribute_Edit
|
|
| 166 |
/**
|
| 167 |
* This method is called before rendering HTML
|
| 168 |
*
|
| 169 |
-
* @return
|
| 170 |
*/
|
| 171 |
protected function _beforeToHtml()
|
| 172 |
{
|
| 6 |
* @package Clarion_Customerattribute
|
| 7 |
* @author Clarion Magento Team
|
| 8 |
*/
|
| 9 |
+
class Clarion_Customerattribute_Block_Adminhtml_Customerattribute_Edit_Main_Main extends Mage_Adminhtml_Block_Widget_Form
|
| 10 |
{
|
| 11 |
protected $_attribute = null;
|
| 12 |
|
| 27 |
/**
|
| 28 |
* Preparing default form elements for editing attribute
|
| 29 |
*
|
| 30 |
+
* @return Clarion_Customerattribute_Block_Adminhtml_Customerattribute_Edit_Main_Main
|
| 31 |
*/
|
| 32 |
protected function _prepareForm()
|
| 33 |
{
|
| 153 |
/**
|
| 154 |
* Initialize form fileds values
|
| 155 |
*
|
| 156 |
+
* @return Clarion_Customerattribute_Block_Adminhtml_Customerattribute_Edit_Main_Main
|
| 157 |
*/
|
| 158 |
protected function _initFormValues()
|
| 159 |
{
|
| 166 |
/**
|
| 167 |
* This method is called before rendering HTML
|
| 168 |
*
|
| 169 |
+
* @return Clarion_Customerattribute_Block_Adminhtml_Customerattribute_Edit_Main_Main
|
| 170 |
*/
|
| 171 |
protected function _beforeToHtml()
|
| 172 |
{
|
app/code/community/Clarion/Customerattribute/Block/Adminhtml/Customerattribute/Edit/Options/{Abstract.php → Options.php}
RENAMED
|
@@ -7,7 +7,8 @@
|
|
| 7 |
* @author Clarion Magento Team
|
| 8 |
*
|
| 9 |
*/
|
| 10 |
-
|
|
|
|
| 11 |
{
|
| 12 |
|
| 13 |
public function __construct()
|
| 7 |
* @author Clarion Magento Team
|
| 8 |
*
|
| 9 |
*/
|
| 10 |
+
class Clarion_Customerattribute_Block_Adminhtml_Customerattribute_Edit_Options_Options
|
| 11 |
+
extends Mage_Adminhtml_Block_Widget
|
| 12 |
{
|
| 13 |
|
| 14 |
public function __construct()
|
app/code/community/Clarion/Customerattribute/Block/Adminhtml/Customerattribute/Edit/Tab/Main.php
CHANGED
|
@@ -7,7 +7,7 @@
|
|
| 7 |
* @author Clarion Magento Team
|
| 8 |
*/
|
| 9 |
|
| 10 |
-
class Clarion_Customerattribute_Block_Adminhtml_Customerattribute_Edit_Tab_Main extends
|
| 11 |
{
|
| 12 |
|
| 13 |
/**
|
| 7 |
* @author Clarion Magento Team
|
| 8 |
*/
|
| 9 |
|
| 10 |
+
class Clarion_Customerattribute_Block_Adminhtml_Customerattribute_Edit_Tab_Main extends Clarion_Customerattribute_Block_Adminhtml_Customerattribute_Edit_Main_Main
|
| 11 |
{
|
| 12 |
|
| 13 |
/**
|
app/code/community/Clarion/Customerattribute/Block/Adminhtml/Customerattribute/Edit/Tab/Options.php
CHANGED
|
@@ -6,6 +6,7 @@
|
|
| 6 |
* @package Clarion_Customerattribute
|
| 7 |
* @author Clarion Magento Team
|
| 8 |
*/
|
| 9 |
-
class Clarion_Customerattribute_Block_Adminhtml_Customerattribute_Edit_Tab_Options
|
|
|
|
| 10 |
{
|
| 11 |
}
|
| 6 |
* @package Clarion_Customerattribute
|
| 7 |
* @author Clarion Magento Team
|
| 8 |
*/
|
| 9 |
+
class Clarion_Customerattribute_Block_Adminhtml_Customerattribute_Edit_Tab_Options
|
| 10 |
+
extends Clarion_Customerattribute_Block_Adminhtml_Customerattribute_Edit_Options_Options
|
| 11 |
{
|
| 12 |
}
|
app/design/frontend/base/default/template/clarion/customerattribute/form/edit.phtml
CHANGED
|
@@ -107,7 +107,7 @@
|
|
| 107 |
|
| 108 |
<?php elseif($attribute->getFrontendInput()== 'date'):?>
|
| 109 |
<input type="text" style="width:110px !important;" class=" input-text <?php echo $fieldRequiredClass; ?> " title="<?php echo $this->__($frontEndLabel); ?>" value="<?php echo $this->helper('clarion_customerattribute/customerattribute')->getFormattedDate($fieldValue); ?>" id="<?php echo $attribute->getAttributeCode(); ?>" name="<?php echo $attribute->getAttributeCode(); ?>">
|
| 110 |
-
<img style="" title="Select Date" id="<?php echo $attribute->getAttributeCode(); ?>_trig" class="v-middle" alt="" src="<?php echo $this->getSkinUrl('images/grid-cal.gif') ?>">
|
| 111 |
<script type="text/javascript">
|
| 112 |
//<