| 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/Promo/Widget/Chooser/ |
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)
*/
/**
* Adminhtml sales order create search products block
*
* @category Mage
* @package Mage_Adminhtml
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Adminhtml_Block_Promo_Widget_Chooser_Sku extends Mage_Adminhtml_Block_Widget_Grid
{
public function __construct($arguments=array())
{
parent::__construct($arguments);
if ($this->getRequest()->getParam('current_grid_id')) {
$this->setId($this->getRequest()->getParam('current_grid_id'));
} else {
$this->setId('skuChooserGrid_'.$this->getId());
}
$form = $this->getJsFormObject();
$this->setRowClickCallback("$form.chooserGridRowClick.bind($form)");
$this->setCheckboxCheckCallback("$form.chooserGridCheckboxCheck.bind($form)");
$this->setRowInitCallback("$form.chooserGridRowInit.bind($form)");
$this->setDefaultSort('sku');
$this->setUseAjax(true);
if ($this->getRequest()->getParam('collapse')) {
$this->setIsCollapsed(true);
}
}
/**
* Retrieve quote store object
* @return Mage_Core_Model_Store
*/
public function getStore()
{
return Mage::app()->getStore();
}
protected function _addColumnFilterToCollection($column)
{
// Set custom filter for in product flag
if ($column->getId() == 'in_products') {
$selected = $this->_getSelectedProducts();
if (empty($selected)) {
$selected = '';
}
if ($column->getFilter()->getValue()) {
$this->getCollection()->addFieldToFilter('sku', array('in'=>$selected));
} else {
$this->getCollection()->addFieldToFilter('sku', array('nin'=>$selected));
}
} else {
parent::_addColumnFilterToCollection($column);
}
return $this;
}
/**
* Prepare Catalog Product Collection for attribute SKU in Promo Conditions SKU chooser
*
* @return Mage_Adminhtml_Block_Promo_Widget_Chooser_Sku
*/
protected function _prepareCollection()
{
$collection = Mage::getResourceModel('catalog/product_collection')
->setStoreId(0)
->addAttributeToSelect('name', 'type_id', 'attribute_set_id');
$this->setCollection($collection);
return parent::_prepareCollection();
}
/**
* Define Cooser Grid Columns and filters
*
* @return Mage_Adminhtml_Block_Promo_Widget_Chooser_Sku
*/
protected function _prepareColumns()
{
$this->addColumn('in_products', array(
'header_css_class' => 'a-center',
'type' => 'checkbox',
'name' => 'in_products',
'values' => $this->_getSelectedProducts(),
'align' => 'center',
'index' => 'sku',
'use_index' => true,
));
$this->addColumn('entity_id', array(
'header' => Mage::helper('sales')->__('ID'),
'sortable' => true,
'width' => '60px',
'index' => 'entity_id'
));
$this->addColumn('type',
array(
'header'=> Mage::helper('catalog')->__('Type'),
'width' => '60px',
'index' => 'type_id',
'type' => 'options',
'options' => Mage::getSingleton('catalog/product_type')->getOptionArray(),
));
$sets = Mage::getResourceModel('eav/entity_attribute_set_collection')
->setEntityTypeFilter(Mage::getModel('catalog/product')->getResource()->getTypeId())
->load()
->toOptionHash();
$this->addColumn('set_name',
array(
'header'=> Mage::helper('catalog')->__('Attrib. Set Name'),
'width' => '100px',
'index' => 'attribute_set_id',
'type' => 'options',
'options' => $sets,
));
$this->addColumn('chooser_sku', array(
'header' => Mage::helper('sales')->__('SKU'),
'name' => 'chooser_sku',
'width' => '80px',
'index' => 'sku'
));
$this->addColumn('chooser_name', array(
'header' => Mage::helper('sales')->__('Product Name'),
'name' => 'chooser_name',
'index' => 'name'
));
return parent::_prepareColumns();
}
public function getGridUrl()
{
return $this->getUrl('*/*/chooser', array(
'_current' => true,
'current_grid_id' => $this->getId(),
'collapse' => null
));
}
protected function _getSelectedProducts()
{
$products = $this->getRequest()->getPost('selected', array());
return $products;
}
}