本文整理汇总了PHP中HTML_QuickForm_element::exportValue方法的典型用法代码示例。如果您正苦于以下问题:PHP HTML_QuickForm_element::exportValue方法的具体用法?PHP HTML_QuickForm_element::exportValue怎么用?PHP HTML_QuickForm_element::exportValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HTML_QuickForm_element
的用法示例。
在下文中一共展示了HTML_QuickForm_element::exportValue方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: exportValue
/**
* We don't need values from button-type elements (except submit) and files
*/
function exportValue(&$submitValues, $assoc = false)
{
$type = $this->getType();
if ('reset' == $type || 'image' == $type || 'button' == $type || 'file' == $type) {
return null;
} else {
return parent::exportValue($submitValues, $assoc);
}
}
示例2: exportValue
/**
* Returns a 'safe' element's value
*
* @param array array of submitted values to search
* @param bool whether to return the value as associative array
* @access public
* @return mixed
*/
function exportValue(&$submitValues, $assoc = false)
{
if ($this->_options['actAsGroup']) {
return parent::exportValue($submitValues, $assoc);
}
if ($assoc) {
$values = array();
foreach (array_keys($this->_rows) as $key) {
foreach (array_keys($this->_rows[$key]) as $key2) {
$value = $this->_rows[$key][$key2]->exportValue($submitValues, true);
if (is_array($value)) {
$values = HTML_QuickForm::arrayMerge($values, $value);
} else {
$values[$this->_rows[$key][$key2]->getName()] = $value;
}
}
}
return $values;
} else {
return null;
}
}