You are here

protected function XmlFileLoader::parseOptions in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/validator/Mapping/Loader/XmlFileLoader.php \Symfony\Component\Validator\Mapping\Loader\XmlFileLoader::parseOptions()

Parses a collection of "option" XML nodes.

Parameters

\SimpleXMLElement $nodes The XML nodes:

Return value

array The options

1 call to XmlFileLoader::parseOptions()
XmlFileLoader::parseConstraints in vendor/symfony/validator/Mapping/Loader/XmlFileLoader.php
Parses a collection of "constraint" XML nodes.

File

vendor/symfony/validator/Mapping/Loader/XmlFileLoader.php, line 139

Class

XmlFileLoader
Loads validation metadata from an XML file.

Namespace

Symfony\Component\Validator\Mapping\Loader

Code

protected function parseOptions(\SimpleXMLElement $nodes) {
  $options = array();
  foreach ($nodes as $node) {
    if (count($node) > 0) {
      if (count($node->value) > 0) {
        $value = $this
          ->parseValues($node->value);
      }
      elseif (count($node->constraint) > 0) {
        $value = $this
          ->parseConstraints($node->constraint);
      }
      else {
        $value = array();
      }
    }
    else {
      $value = XmlUtils::phpize($node);
      if (is_string($value)) {
        $value = trim($value);
      }
    }
    $options[(string) $node['name']] = $value;
  }
  return $options;
}