Current Path :
/
home
/
develito
/
www
/
components
/
com_visforms
/
lib
/
html
/
layout
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/develito/www/components/com_visforms/lib/html/layout/visforms.php
<?php /** * Visforms Layout class Visforms * * @author Aicha Vack * @package Joomla.Site * @subpackage com_visforms * @link http://www.vi-solutions.de * @license GNU General Public License version 2 or later; see license.txt * @copyright 2012 vi-solutions * @since Joomla 1.6 */ // no direct access defined('_JEXEC') or die('Restricted access'); /** * Set properties of a form field according to it's type and layout settings * * @package Joomla.Site * @subpackage com_visforms * @since 1.6 */ class VisformsHtmllayoutVisforms extends VisformsHtmllayout { /** * method to attach properties relevant for field display to field object * @return object modified field */ public function prepareHtml() { //attach error messages array for javascript validation to field $this->setFieldCustomErrorMessageArray(); $this->removeUnsupportedShowLabel(); $this->setErrorId(); $this->setFieldAttributeArray(); $this->setFieldValidateArray(); $this->setFieldControlHtml(); return $this->field; } /** * Methode to set the html string as a field property */ protected function setFieldControlHtml() { //get Instance of field html control class occoriding to field type and layout type $ocontrol = VisformsHtmlControl::getInstance($this->fieldHtml, $this->type); if (!(is_object($ocontrol))) { //throw an error } else { //instanciate decorators $control = new VisformsHtmlControlDecoratorDefault($ocontrol); } //set field property $this->field->controlHtml = $control->getControlHtml(); } }