| 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/a/w/e/awebpaca/boutiques/app/code/core/Mage/Adminhtml/controllers/Promo/ |
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)
*/
class Mage_Adminhtml_Promo_CatalogController extends Mage_Adminhtml_Controller_Action
{
protected function _initAction()
{
$this->loadLayout()
->_setActiveMenu('promo/catalog')
->_addBreadcrumb(Mage::helper('catalogrule')->__('Promotions'), Mage::helper('catalogrule')->__('Promotions'));
return $this;
}
public function indexAction()
{
$this->_title($this->__('Promotions'))->_title($this->__('Catalog Price Rules'));
if (Mage::app()->loadCache('catalog_rules_dirty')) {
Mage::getSingleton('adminhtml/session')->addNotice(Mage::helper('catalogrule')->__('There are rules that have been changed but were not applied. Please, click Apply Rules in order to see immediate effect in the catalog.'));
}
$this->_initAction()
->_addBreadcrumb(Mage::helper('catalogrule')->__('Catalog'), Mage::helper('catalogrule')->__('Catalog'))
->renderLayout();
}
public function newAction()
{
$this->_forward('edit');
}
public function editAction()
{
$this->_title($this->__('Promotions'))->_title($this->__('Catalog Price Rules'));
$id = $this->getRequest()->getParam('id');
$model = Mage::getModel('catalogrule/rule');
if ($id) {
$model->load($id);
if (! $model->getRuleId()) {
Mage::getSingleton('adminhtml/session')->addError(Mage::helper('catalogrule')->__('This rule no longer exists.'));
$this->_redirect('*/*');
return;
}
}
$this->_title($model->getRuleId() ? $model->getName() : $this->__('New Rule'));
// set entered data if was error when we do save
$data = Mage::getSingleton('adminhtml/session')->getPageData(true);
if (!empty($data)) {
$model->addData($data);
}
$model->getConditions()->setJsFormObject('rule_conditions_fieldset');
Mage::register('current_promo_catalog_rule', $model);
$this->_initAction()->getLayout()->getBlock('promo_catalog_edit')
->setData('action', $this->getUrl('*/promo_catalog/save'));
$this
->_addBreadcrumb($id ? Mage::helper('catalogrule')->__('Edit Rule') : Mage::helper('catalogrule')->__('New Rule'), $id ? Mage::helper('catalogrule')->__('Edit Rule') : Mage::helper('catalogrule')->__('New Rule'))
->renderLayout();
}
public function saveAction()
{
if ($this->getRequest()->getPost()) {
try {
$model = Mage::getModel('catalogrule/rule');
Mage::dispatchEvent('adminhtml_controller_catalogrule_prepare_save', array('request' => $this->getRequest()));
$data = $this->getRequest()->getPost();
$data = $this->_filterDates($data, array('from_date', 'to_date'));
if ($id = $this->getRequest()->getParam('rule_id')) {
$model->load($id);
if ($id != $model->getId()) {
Mage::throwException(Mage::helper('catalogrule')->__('Wrong rule specified.'));
}
}
$validateResult = $model->validateData(new Varien_Object($data));
if ($validateResult !== true) {
foreach($validateResult as $errorMessage) {
$this->_getSession()->addError($errorMessage);
}
$this->_getSession()->setPageData($data);
$this->_redirect('*/*/edit', array('id'=>$model->getId()));
return;
}
$data['conditions'] = $data['rule']['conditions'];
unset($data['rule']);
if (!empty($data['auto_apply'])) {
$autoApply = true;
unset($data['auto_apply']);
} else {
$autoApply = false;
}
$model->loadPost($data);
Mage::getSingleton('adminhtml/session')->setPageData($model->getData());
$model->save();
Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('catalogrule')->__('The rule has been saved.'));
Mage::getSingleton('adminhtml/session')->setPageData(false);
if ($autoApply) {
$this->_forward('applyRules');
} else {
Mage::app()->saveCache(1, 'catalog_rules_dirty');
if ($this->getRequest()->getParam('back')) {
$this->_redirect('*/*/edit', array('id' => $model->getId()));
return;
}
$this->_redirect('*/*/');
}
return;
} catch (Mage_Core_Exception $e) {
$this->_getSession()->addError($e->getMessage());
} catch (Exception $e) {
$this->_getSession()->addError(Mage::helper('catalogrule')->__('An error occurred while saving the rule data. Please review the log and try again.'));
Mage::logException($e);
Mage::getSingleton('adminhtml/session')->setPageData($data);
$this->_redirect('*/*/edit', array('id' => $this->getRequest()->getParam('rule_id')));
return;
}
}
$this->_redirect('*/*/');
}
public function deleteAction()
{
if ($id = $this->getRequest()->getParam('id')) {
try {
$model = Mage::getModel('catalogrule/rule');
$model->load($id);
$model->delete();
Mage::app()->saveCache(1, 'catalog_rules_dirty');
Mage::getSingleton('adminhtml/session')->addSuccess(Mage::helper('catalogrule')->__('The rule has been deleted.'));
$this->_redirect('*/*/');
return;
} catch (Mage_Core_Exception $e) {
$this->_getSession()->addError($e->getMessage());
} catch (Exception $e) {
$this->_getSession()->addError(Mage::helper('catalogrule')->__('An error occurred while deleting the rule. Please review the log and try again.'));
Mage::logException($e);
$this->_redirect('*/*/edit', array('id' => $this->getRequest()->getParam('id')));
return;
}
}
Mage::getSingleton('adminhtml/session')->addError(Mage::helper('catalogrule')->__('Unable to find a rule to delete.'));
$this->_redirect('*/*/');
}
public function newConditionHtmlAction()
{
$id = $this->getRequest()->getParam('id');
$typeArr = explode('|', str_replace('-', '/', $this->getRequest()->getParam('type')));
$type = $typeArr[0];
$model = Mage::getModel($type)
->setId($id)
->setType($type)
->setRule(Mage::getModel('catalogrule/rule'))
->setPrefix('conditions');
if (!empty($typeArr[1])) {
$model->setAttribute($typeArr[1]);
}
if ($model instanceof Mage_Rule_Model_Condition_Abstract) {
$model->setJsFormObject($this->getRequest()->getParam('form'));
$html = $model->asHtmlRecursive();
} else {
$html = '';
}
$this->getResponse()->setBody($html);
}
public function chooserAction()
{
switch ($this->getRequest()->getParam('attribute')) {
case 'sku':
$type = 'adminhtml/promo_widget_chooser_sku';
break;
case 'categories':
$type = 'adminhtml/promo_widget_chooser_categories';
break;
}
if (!empty($type)) {
$block = $this->getLayout()->createBlock($type);
if ($block) {
$this->getResponse()->setBody($block->toHtml());
}
}
}
public function newActionHtmlAction()
{
$id = $this->getRequest()->getParam('id');
$typeArr = explode('|', str_replace('-', '/', $this->getRequest()->getParam('type')));
$type = $typeArr[0];
$model = Mage::getModel($type)
->setId($id)
->setType($type)
->setRule(Mage::getModel('catalogrule/rule'))
->setPrefix('actions');
if (!empty($typeArr[1])) {
$model->setAttribute($typeArr[1]);
}
if ($model instanceof Mage_Rule_Model_Action_Abstract) {
$model->setJsFormObject($this->getRequest()->getParam('form'));
$html = $model->asHtmlRecursive();
} else {
$html = '';
}
$this->getResponse()->setBody($html);
}
/**
* Apply all active catalog price rules
*/
public function applyRulesAction()
{
try {
Mage::getModel('catalogrule/rule')->applyAll();
Mage::app()->removeCache('catalog_rules_dirty');
Mage::getSingleton('adminhtml/session')->addSuccess(
Mage::helper('catalogrule')->__('The rules have been applied.')
);
} catch (Exception $e) {
Mage::getSingleton('adminhtml/session')->addError(
Mage::helper('catalogrule')->__('Unable to apply rules.')
);
throw $e;
}
$this->_redirect('*/*');
}
public function addToAlersAction()
{
$alerts = Mage::getResourceModel('customeralert/type')->getAlertsForCronChecking();
foreach ($alerts as $val) {
Mage::getSingleton('customeralert/config')->getAlertByType('price_is_changed')
->setParamValues($val)
->updateForPriceRule();
}
}
protected function _isAllowed()
{
return Mage::getSingleton('admin/session')->isAllowed('promo/catalog');
}
}