| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/app/code/core/Mage/Adminhtml/Block/Widget/Grid/Massaction/ |
Upload File : |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Mage
* @package Mage_Adminhtml
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/**
* Grid widget massaction block
*
* @category Mage
* @package Mage_Adminhtml
* @author Magento Core Team <core@magentocommerce.com>
*/
abstract class Mage_Adminhtml_Block_Widget_Grid_Massaction_Abstract extends Mage_Adminhtml_Block_Widget
{
/**
* Massaction items
*
* @var array
*/
protected $_items = array();
public function __construct()
{
parent::__construct();
$this->setTemplate('widget/grid/massaction.phtml');
$this->setErrorText(Mage::helper('catalog')->jsQuoteEscape(Mage::helper('catalog')->__('Please select items.')));
}
/**
* Add new massaction item
*
* $item = array(
* 'label' => string,
* 'complete' => string, // Only for ajax enabled grid (optional)
* 'url' => string,
* 'confirm' => string, // text of confirmation of this action (optional)
* 'additional' => string|array|Mage_Core_Block_Abstract // (optional)
* );
*
* @param string $itemId
* @param array $item
* @return Mage_Adminhtml_Block_Widget_Grid_Massaction_Abstract
*/
public function addItem($itemId, array $item)
{
$this->_items[$itemId] = $this->getLayout()->createBlock('adminhtml/widget_grid_massaction_item')
->setData($item)
->setMassaction($this)
->setId($itemId);
if($this->_items[$itemId]->getAdditional()) {
$this->_items[$itemId]->setAdditionalActionBlock($this->_items[$itemId]->getAdditional());
$this->_items[$itemId]->unsAdditional();
}
return $this;
}
/**
* Retrieve massaction item with id $itemId
*
* @param string $itemId
* @return Mage_Adminhtml_Block_Widget_Grid_Massaction_Item
*/
public function getItem($itemId)
{
if(isset($this->_items[$itemId])) {
return $this->_items[$itemId];
}
return null;
}
/**
* Retrieve massaction items
*
* @return array
*/
public function getItems()
{
return $this->_items;
}
/**
* Retrieve massaction items JSON
*
* @return string
*/
public function getItemsJson()
{
$result = array();
foreach ($this->getItems() as $itemId=>$item) {
$result[$itemId] = $item->toArray();
}
return Mage::helper('core')->jsonEncode($result);
}
/**
* Retrieve massaction items count
*
* @return integer
*/
public function getCount()
{
return sizeof($this->_items);
}
/**
* Checks are massactions available
*
* @return boolean
*/
public function isAvailable()
{
return $this->getCount() > 0 && $this->getParentBlock()->getMassactionIdField();
}
/**
* Retrieve global form field name for all massaction items
*
* @return string
*/
public function getFormFieldName()
{
return ($this->getData('form_field_name') ? $this->getData('form_field_name') : 'massaction');
}
/**
* Retrieve form field name for internal use. Based on $this->getFormFieldName()
*
* @return string
*/
public function getFormFieldNameInternal()
{
return 'internal_' . $this->getFormFieldName();
}
/**
* Retrieve massaction block js object name
*
* @return string
*/
public function getJsObjectName()
{
return $this->getHtmlId() . 'JsObject';
}
/**
* Retrieve grid block js object name
*
* @return string
*/
public function getGridJsObjectName()
{
return $this->getParentBlock()->getJsObjectName();
}
/**
* Retrieve JSON string of selected checkboxes
*
* @return string
*/
public function getSelectedJson()
{
if($selected = $this->getRequest()->getParam($this->getFormFieldNameInternal())) {
$selected = explode(',', $selected);
return join(',', $selected);
// return Mage::helper('core')->jsonEncode($selected);
} else {
return '';
// return '[]';
}
}
/**
* Retrieve array of selected checkboxes
*
* @return array
*/
public function getSelected()
{
if($selected = $this->getRequest()->getParam($this->getFormFieldNameInternal())) {
$selected = explode(',', $selected);
return $selected;
} else {
return array();
}
}
/**
* Retrieve apply button html
*
* @return string
*/
public function getApplyButtonHtml()
{
return $this->getButtonHtml($this->__('Submit'), $this->getJsObjectName() . ".apply()");
}
public function getJavaScript()
{
return "
var {$this->getJsObjectName()} = new varienGridMassaction('{$this->getHtmlId()}', {$this->getGridJsObjectName()}, '{$this->getSelectedJson()}', '{$this->getFormFieldNameInternal()}', '{$this->getFormFieldName()}');
{$this->getJsObjectName()}.setItems({$this->getItemsJson()});
{$this->getJsObjectName()}.setGridIds('{$this->getGridIdsJson()}');
". ($this->getUseAjax() ? "{$this->getJsObjectName()}.setUseAjax(true);" : '') . "
". ($this->getUseSelectAll() ? "{$this->getJsObjectName()}.setUseSelectAll(true);" : '') .
"{$this->getJsObjectName()}.errorText = '{$this->getErrorText()}';";
}
public function getGridIdsJson()
{
if (!$this->getUseSelectAll()) {
return '';
}
$gridIds = $this->getParentBlock()->getCollection()->getAllIds();
if(!empty($gridIds)) {
return join(",", $gridIds);
//return Mage::helper('core')->jsonEncode($gridIds);
}
return '';
//return '[]';
}
public function getHtmlId()
{
return $this->getParentBlock()->getHtmlId() . '_massaction';
}
/**
* Remove existing massaction item by its id
*
* @param string $itemId
* @return Mage_Adminhtml_Block_Widget_Grid_Massaction_Abstract
*/
public function removeItem($itemId)
{
if (isset($this->_items[$itemId])) {
unset($this->_items[$itemId]);
}
return $this;
}
/**
* Retrieve select all functionality flag check
*
* @return boolean
*/
public function getUseSelectAll()
{
return $this->_getData('use_select_all') === null || $this->_getData('use_select_all');
}
/**
* Retrieve select all functionality flag check
*
* @param boolean $flag
* @return Mage_Adminhtml_Block_Widget_Grid_Massaction_Abstract
*/
public function setUseSelectAll($flag)
{
$this->setData('use_select_all', (bool) $flag);
return $this;
}
}
// Class Mage_Adminhtml_Block_Widget_Grid_Massaction_Abstract End