0byt3m1n1
Path:
/
data
/
applications
/
aps
/
magento
/
1.1.3-2
/
standard
/
htdocs
/
lib
/
Varien
/
Data
/
Form
/
Element
/
[
Home
]
File: Abstract.php
<?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. * * @category Varien * @package Varien_Data * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** * Data form abstract class * * @category Varien * @package Varien_Data * @author Magento Core Team <core@magentocommerce.com> */ abstract class Varien_Data_Form_Element_Abstract extends Varien_Data_Form_Abstract { protected $_id; protected $_type; protected $_form; protected $_elements; protected $_renderer; public function __construct($attributes = array()) { parent::__construct($attributes); $this->_renderer = Varien_Data_Form::getElementRenderer(); } /** * Add form element * * @param Varien_Data_Form_Element_Abstract $element * @return Varien_Data_Form */ public function addElement(Varien_Data_Form_Element_Abstract $element, $after=false) { if ($this->getForm()) { $this->getForm()->checkElementId($element->getId()); $this->getForm()->addElementToCollection($element); } parent::addElement($element, $after); return $this; } public function getId() { return $this->_id; } public function getType() { return $this->_type; } public function getForm() { return $this->_form; } public function setId($id) { $this->_id = $id; $this->setData('html_id', $id); return $this; } public function getHtmlId() { return $this->getForm()->getHtmlIdPrefix() . $this->getData('html_id') . $this->getForm()->getHtmlIdSuffix(); } public function getName() { $name = $this->getData('name'); if ($suffix = $this->getForm()->getFieldNameSuffix()) { $name = $this->getForm()->addSuffixToName($name, $suffix); } return $name; } public function setType($type) { $this->_type = $type; $this->setData('type', $type); return $this; } public function setForm($form) { $this->_form = $form; return $this; } public function removeField($elementId) { $this->getForm()->removeField($elementId); return parent::removeField($elementId); } public function getHtmlAttributes() { return array('type', 'title', 'class', 'style', 'onclick', 'onchange', 'disabled', 'readonly'); } public function addClass($class) { $oldClass = $this->getClass(); $this->setClass($oldClass.' '.$class); return $this; } protected function _escape($string) { return htmlspecialchars($string, ENT_COMPAT); } public function getEscapedValue($index=null) { $value = $this->getValue($index); if ($filter = $this->getValueFilter()) { $value = $filter->filter($value); } return $this->_escape($value); } public function setRenderer(Varien_Data_Form_Element_Renderer_Interface $renderer) { $this->_renderer = $renderer; return $this; } public function getElementHtml() { $html = '<input id="'.$this->getHtmlId().'" name="'.$this->getName() .'" value="'.$this->getEscapedValue().'" '.$this->serialize($this->getHtmlAttributes()).'/>'."\n"; $html.= $this->getAfterElementHtml(); return $html; } public function getAfterElementHtml() { return $this->getData('after_element_html'); } public function getLabelHtml() { if (!is_null($this->getLabel())) { $html = '<label for="'.$this->getHtmlId().'">'.$this->getLabel() . ( $this->getRequired() ? ' <span class="required">*</span>' : '' ).'</label>'."\n"; } else { $html = ''; } return $html; } public function getDefaultHtml() { $html = $this->getData('default_html'); if (is_null($html)) { $html = ( $this->getNoSpan() === true ) ? '' : '<span class="field-row">'."\n"; $html.= $this->getLabelHtml(); $html.= $this->getElementHtml(); $html.= ( $this->getNoSpan() === true ) ? '' : '</span>'."\n"; } return $html; } public function getHtml() { if ($this->_renderer) { $html = $this->_renderer->render($this); } else { $html = $this->getDefaultHtml(); } return $html; } public function toHtml() { return $this->getHtml(); } }