/app/code/community/Devinc/Groupdeals/controllers/Adminhtml/Groupdeals/WidgetController.php
https://bitbucket.org/acidel/buykoala · PHP · 70 lines · 29 code · 7 blank · 34 comment · 1 complexity · b3b91d4cbf1333a0b15f6973a15e2dd0 MD5 · raw 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)
- */
-
-
- /**
- * Catalog Product widgets controller for CMS WYSIWYG
- *
- * @category Mage
- * @package Mage_Adminhtml
- * @author Magento Core Team <core@magentocommerce.com>
- */
- class Devinc_Groupdeals_Adminhtml_Groupdeals_WidgetController extends Mage_Adminhtml_Controller_Action
- {
- /**
- * Chooser Source action
- */
- public function chooserAction()
- {
- $uniqId = $this->getRequest()->getParam('uniq_id');
- $massAction = $this->getRequest()->getParam('use_massaction', false);
- $productTypeId = $this->getRequest()->getParam('product_type_id', null);
-
- $productsGrid = $this->getLayout()->createBlock('adminhtml/catalog_product_widget_chooser', '', array(
- 'id' => $uniqId,
- 'use_massaction' => $massAction,
- 'product_type_id' => $productTypeId,
- 'category_id' => $this->getRequest()->getParam('category_id')
- ));
-
- $html = $productsGrid->toHtml();
-
- if (!$this->getRequest()->getParam('products_grid')) {
- $categoriesTree = $this->getLayout()->createBlock('adminhtml/catalog_category_widget_chooser', '', array(
- 'id' => $uniqId.'Tree',
- 'node_click_listener' => $productsGrid->getCategoryClickListenerJs(),
- 'with_empty_node' => true
- ));
-
- $html = $this->getLayout()->createBlock('adminhtml/catalog_product_widget_chooser_container')
- ->setTreeHtml($categoriesTree->toHtml())
- ->setGridHtml($html)
- ->toHtml();
- }
-
- $this->getResponse()->setBody($html);
- }
- }