Mage_Adminhtml_Block_Customer_Edit_Tab_Newsletter_Grid_Renderer_Action Class Reference

Inheritance diagram for Mage_Adminhtml_Block_Customer_Edit_Tab_Newsletter_Grid_Renderer_Action:

Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract Mage_Adminhtml_Block_Abstract Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Interface Mage_Core_Block_Template Mage_Core_Block_Abstract Varien_Object

List of all members.

Public Member Functions

 render (Varien_Object $row)

Protected Member Functions

 _getEscapedValue ($value)
 _actionsToHtml (array $actions)


Detailed Description

Definition at line 34 of file Action.php.


Member Function Documentation

_actionsToHtml ( array actions  )  [protected]

Definition at line 62 of file Action.php.

00063     {
00064         $html = array();
00065         $attributesObject = new Varien_Object();
00066         foreach ($actions as $action) {
00067             $attributesObject->setData($action['@']);
00068             $html[] = '<a ' . $attributesObject->serialize() . '>' . $action['#'] . '</a>';
00069         }
00070         return implode('<span class="separator">&nbsp;|&nbsp;</span>', $html);
00071     }

_getEscapedValue ( value  )  [protected]

Definition at line 57 of file Action.php.

00058     {
00059         return addcslashes(htmlspecialchars($value),'\\\'');
00060     }

render ( Varien_Object row  ) 

Renders grid column

Parameters:
Varien_Object $row
Returns:
string

Reimplemented from Mage_Adminhtml_Block_Widget_Grid_Column_Renderer_Abstract.

Definition at line 37 of file Action.php.

00038     {
00039         $actions = array();
00040 
00041         $actions[] = array(
00042             '@' =>  array(
00043                 'href'  => $this->getUrl('*/newsletter_template/preview',
00044                     array(
00045                         'id'        => $row->getTemplateId(),
00046                         'subscriber'=> Mage::registry('subscriber')->getId()
00047                     )
00048                                 ),
00049                 'target'=>  '_blank'
00050             ),
00051             '#' => Mage::helper('customer')->__('View')
00052         );
00053 
00054         return $this->_actionsToHtml($actions);
00055     }


The documentation for this class was generated from the following file:

Generated on Sat Jul 4 17:22:47 2009 for Magento by  doxygen 1.5.8