| 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/Urlrewrite/Edit/ |
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)
*/
/**
* Urlrewrites edit form
*
* @category Mage
* @package Mage_Adminhtml
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Adminhtml_Block_Urlrewrite_Edit_Form extends Mage_Adminhtml_Block_Widget_Form
{
/**
* Set form id and title
*
*/
public function __construct()
{
parent::__construct();
$this->setId('urlrewrite_form');
$this->setTitle(Mage::helper('adminhtml')->__('Block Information'));
}
/**
* Prepare the form layout
*
* @return Mage_Adminhtml_Block_Urlrewrite_Edit_Form
*/
protected function _prepareForm()
{
$model = Mage::registry('current_urlrewrite');
$product = Mage::registry('current_product');
$category = Mage::registry('current_category');
$form = new Varien_Data_Form(array('id' => 'edit_form', 'action' => $this->getData('action'), 'method' => 'post'));
// set form data either from model values or from session
$formValues = array(
'store_id' => $model->getStoreId(),
'id_path' => $model->getIdPath(),
'request_path' => $model->getRequestPath(),
'target_path' => $model->getTargetPath(),
'options' => $model->getOptions(),
'description' => $model->getDescription(),
);
if ($sessionData = Mage::getSingleton('adminhtml/session')->getData('urlrewrite_data', true)) {
foreach ($formValues as $key => $value) {
if (isset($sessionData[$key])) {
$formValues[$key] = $sessionData[$key];
}
}
}
$fieldset = $form->addFieldset('base_fieldset', array(
'legend' => Mage::helper('adminhtml')->__('URL Rewrite Information')
));
$fieldset->addField('is_system', 'select', array(
'label' => Mage::helper('adminhtml')->__('Type'),
'title' => Mage::helper('adminhtml')->__('Type'),
'name' => 'is_system',
'required' => true,
'options' => array(
1 => Mage::helper('adminhtml')->__('System'),
0 => Mage::helper('adminhtml')->__('Custom')
),
'disabled' => true,
'value' => $model->getIsSystem()
));
// get store switcher or a hidden field with its id
if (!Mage::app()->isSingleStoreMode()) {
$element = $fieldset->addField('store_id', 'select', array(
'label' => Mage::helper('adminhtml')->__('Store'),
'title' => Mage::helper('adminhtml')->__('Store'),
'name' => 'store_id',
'required' => true,
'values' => Mage::getSingleton('adminhtml/system_store')->getStoreValuesForForm(),
'disabled' => true,
'value' => $formValues['store_id'],
));
if (!$model->getIsSystem()) {
$element->unsetData('disabled');
}
}
else {
$fieldset->addField('store_id', ($model->getId() ? 'hidden' : 'select'), array(
'name' => 'store_id',
'value' => Mage::app()->getStore(true)->getId()
));
}
$idPath = $fieldset->addField('id_path', 'text', array(
'label' => Mage::helper('adminhtml')->__('ID Path'),
'title' => Mage::helper('adminhtml')->__('ID Path'),
'name' => 'id_path',
'required' => true,
'disabled' => true,
'value' => $formValues['id_path']
));
$requestPath = $fieldset->addField('request_path', 'text', array(
'label' => Mage::helper('adminhtml')->__('Request Path'),
'title' => Mage::helper('adminhtml')->__('Request Path'),
'name' => 'request_path',
'required' => true,
'value' => $formValues['request_path']
));
$targetPath = $fieldset->addField('target_path', 'text', array(
'label' => Mage::helper('adminhtml')->__('Target Path'),
'title' => Mage::helper('adminhtml')->__('Target Path'),
'name' => 'target_path',
'required' => true,
'disabled' => true,
'value' => $formValues['target_path'],
));
// auto-generate paths for new urlrewrites
if (!$model->getId()) {
$_product = null;
$_category = null;
if ($category->getId() || $product->getId()) {
$_category = $category;
}
if ($product->getId()) {
$_product = $product;
}
if ($_category || $_product) {
$catalogUrlModel = Mage::getSingleton('catalog/url');
$idPath->setValue($catalogUrlModel->generatePath('id', $_product, $_category));
if (!isset($sessionData['request_path'])) {
$requestPath->setValue($catalogUrlModel->generatePath('request', $_product, $_category, ''));
}
$targetPath->setValue($catalogUrlModel->generatePath('target', $_product, $_category));
}
else {
$idPath->unsetData('disabled');
$targetPath->unsetData('disabled');
}
}
else {
if (!$model->getProductId() && !$model->getCategoryId()) {
$idPath->unsetData('disabled');
$targetPath->unsetData('disabled');
}
}
$fieldset->addField('options', 'select', array(
'label' => Mage::helper('adminhtml')->__('Redirect'),
'title' => Mage::helper('adminhtml')->__('Redirect'),
'name' => 'options',
'options' => array(
'' => Mage::helper('adminhtml')->__('No'),
'R' => Mage::helper('adminhtml')->__('Temporary (302)'),
'RP' => Mage::helper('adminhtml')->__('Permanent (301)'),
),
'value' => $formValues['options']
));
$fieldset->addField('description', 'textarea', array(
'label' => Mage::helper('adminhtml')->__('Description'),
'title' => Mage::helper('adminhtml')->__('Description'),
'name' => 'description',
'cols' => 20,
'rows' => 5,
'value' => $formValues['description'],
'wrap' => 'soft'
));
$form->setUseContainer(true);
$form->setAction(Mage::helper('adminhtml')->getUrl('*/*/save', array(
'id' => $model->getId(),
'product' => $product->getId(),
'category' => $category->getId(),
)));
$this->setForm($form);
return parent::_prepareForm();
}
}