* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Form\Extension\DataCollector; use Symfony\Component\Form\FormInterface; use Symfony\Component\Form\FormView; use Symfony\Component\HttpKernel\DataCollector\Util\ValueExporter; use Symfony\Component\Validator\ConstraintViolationInterface; /** * Default implementation of {@link FormDataExtractorInterface}. * * @author Bernhard Schussek */ class FormDataExtractor implements FormDataExtractorInterface { /** * Constructs a new data extractor. */ public function __construct(ValueExporter $valueExporter = null, $triggerDeprecationNotice = true) { if (null !== $valueExporter && $triggerDeprecationNotice) { @trigger_error('Passing a ValueExporter instance to '.__METHOD__.'() is deprecated in version 3.2 and will be removed in 4.0.', E_USER_DEPRECATED); } } /** * {@inheritdoc} */ public function extractConfiguration(FormInterface $form) { $data = array( 'id' => $this->buildId($form), 'name' => $form->getName(), 'type_class' => get_class($form->getConfig()->getType()->getInnerType()), 'synchronized' => $form->isSynchronized(), 'passed_options' => array(), 'resolved_options' => array(), ); foreach ($form->getConfig()->getAttribute('data_collector/passed_options', array()) as $option => $value) { $data['passed_options'][$option] = $value; } foreach ($form->getConfig()->getOptions() as $option => $value) { $data['resolved_options'][$option] = $value; } ksort($data['passed_options']); ksort($data['resolved_options']); return $data; } /** * {@inheritdoc} */ public function extractDefaultData(FormInterface $form) { $data = array( 'default_data' => array( 'norm' => $form->getNormData(), ), 'submitted_data' => array(), ); if ($form->getData() !== $form->getNormData()) { $data['default_data']['model'] = $form->getData(); } if ($form->getViewData() !== $form->getNormData()) { $data['default_data']['view'] = $form->getViewData(); } return $data; } /** * {@inheritdoc} */ public function extractSubmittedData(FormInterface $form) { $data = array( 'submitted_data' => array( 'norm' => $form->getNormData(), ), 'errors' => array(), ); if ($form->getViewData() !== $form->getNormData()) { $data['submitted_data']['view'] = $form->getViewData(); } if ($form->getData() !== $form->getNormData()) { $data['submitted_data']['model'] = $form->getData(); } foreach ($form->getErrors() as $error) { $errorData = array( 'message' => $error->getMessage(), 'origin' => is_object($error->getOrigin()) ? spl_object_hash($error->getOrigin()) : null, 'trace' => array(), ); $cause = $error->getCause(); while (null !== $cause) { if ($cause instanceof ConstraintViolationInterface) { $errorData['trace'][] = $cause; $cause = method_exists($cause, 'getCause') ? $cause->getCause() : null; continue; } if ($cause instanceof \Exception) { $errorData['trace'][] = $cause; $cause = $cause->getPrevious(); continue; } $errorData['trace'][] = $cause; break; } $data['errors'][] = $errorData; } $data['synchronized'] = $form->isSynchronized(); return $data; } /** * {@inheritdoc} */ public function extractViewVariables(FormView $view) { $data = array( 'id' => isset($view->vars['id']) ? $view->vars['id'] : null, 'name' => isset($view->vars['name']) ? $view->vars['name'] : null, 'view_vars' => array(), ); foreach ($view->vars as $varName => $value) { $data['view_vars'][$varName] = $value; } ksort($data['view_vars']); return $data; } /** * Recursively builds an HTML ID for a form. * * @return string The HTML ID */ private function buildId(FormInterface $form) { $id = $form->getName(); if (null !== $form->getParent()) { $id = $this->buildId($form->getParent()).'_'.$id; } return $id; } } __halt_compiler();----SIGNATURE:----IEJj4B78Zxv7Wo0pAvjr9mBxtHHWlpyBjHNZ4czoZdGC3T1DELKkcjU8/PZ+zfhsoX+41WBjPfHnoK2u2aZfs9clAnbJ5jcc73GAHijSnD1tLW5E4gUSr+sIAMNZmrd8oKTTIbfhLE2+4GMPe33LRVt+auQtuYo9vAv6zXL/xsnQZkxgitF2VC8Zz/Lne3DnQS6W67w2rHRmkzIemhOPVhvv/e7ewI6puRR7HR3I2a4oBaj8J9t9ax4GrXxOY4Iarf/0kvmQrEXPOHrHqRaWNVsTi7Hn9d57JGuXq8Q0jEqA1oa4TdenbFWlTKtKHzosQEb17WMIvIagEb3SV6hiIvForFPI0GVtb5yu+5dgy3pSXXiVnSNM59iE4UEGTWom+EnJB3UDyYipwyP4nUYKjJfXyu5evZs8Od3EY0kMotsEWnFbdRT9prCHPs8qqUgXlXd7quBcHrhny7v71LqHx7xZHgGaiVCDDXoIpOxAwXkrcGWU+yFE62MjtcD+xG2PJwV8FHf3bn/2dC1vrlFOgGzjS5jGakYL2zff7h1eklcqmFDfqbQChkd7YEyPpxNyQhgO4VnygclRT3KkZJobmY1x6pSdYVVUE/UWlXoiDaPtl7Wsg0EAnxnMRF5zavy9brYVSK1Y46fC6p/Zs+kjNTXhv3r53jpdDLdJcjGKxxc=----ATTACHMENT:----NzAwNzAzNzkxODQzNDI2NiA2NTU1MTE5NDM1NTEyMDk0IDQ2NDAzMjMwMDI5MzAzNTI=