| 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/Widget/Block/Adminhtml/Widget/ |
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_Widget
* @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)
*/
/**
* WYSIWYG widget plugin form
*
* @category Mage
* @package Mage_Widget
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Widget_Block_Adminhtml_Widget_Form extends Mage_Adminhtml_Block_Widget_Form
{
/**
* Form with widget to select
*/
protected function _prepareForm()
{
$form = new Varien_Data_Form();
$fieldset = $form->addFieldset('base_fieldset', array(
'legend' => $this->helper('widget')->__('Widget')
));
$select = $fieldset->addField('select_widget_type', 'select', array(
'label' => $this->helper('widget')->__('Widget Type'),
'title' => $this->helper('widget')->__('Widget Type'),
'name' => 'widget_type',
'required' => true,
'options' => $this->_getWidgetSelectOptions(),
'after_element_html' => $this->_getWidgetSelectAfterHtml(),
));
$form->setUseContainer(true);
$form->setId('widget_options_form');
$form->setMethod('post');
$form->setAction($this->getUrl('*/*/buildWidget'));
$this->setForm($form);
}
/**
* Prepare options for widgets HTML select
*
* @return array
*/
protected function _getWidgetSelectOptions()
{
foreach ($this->_getAvailableWidgets(true) as $data) {
$options[$data['type']] = $data['name'];
}
return $options;
}
/**
* Prepare widgets select after element HTML
*
* @return string
*/
protected function _getWidgetSelectAfterHtml()
{
$html = '<p class="nm"><small></small></p>';
$i = 0;
foreach ($this->_getAvailableWidgets(true) as $data) {
$html .= sprintf('<div id="widget-description-%s" class="no-display">%s</div>', $i, $data['description']);
$i++;
}
return $html;
}
/**
* Return array of available widgets based on configuration
*
* @return array
*/
protected function _getAvailableWidgets($withEmptyElement = false)
{
if (!$this->hasData('available_widgets')) {
$result = array();
$allWidgets = Mage::getModel('widget/widget')->getWidgetsArray();
$skipped = $this->_getSkippedWidgets();
foreach ($allWidgets as $widget) {
if (is_array($skipped) && in_array($widget['type'], $skipped)) {
continue;
}
$result[] = $widget;
}
if ($withEmptyElement) {
array_unshift($result, array(
'type' => '',
'name' => $this->helper('adminhtml')->__('-- Please Select --'),
'description' => '',
));
}
$this->setData('available_widgets', $result);
}
return $this->_getData('available_widgets');
}
/**
* Return array of widgets disabled for selection
*
* @return array
*/
protected function _getSkippedWidgets()
{
return Mage::registry('skip_widgets');
}
}