Subversion-Projekte lars-tiefland.php_share

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php

/*
 * This file is part of the symfony package.
 * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

/**
 * @package    symfony
 * @subpackage i18n
 * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
 * @version    SVN: $Id: sfI18nYamlValidateExtractor.class.php 9128 2008-05-21 00:58:19Z Carl.Vondrick $
 */
class sfI18nYamlValidateExtractor extends sfI18nYamlExtractor
{
  /**
   * Extract i18n strings for the given content.
   *
   * @param  string $content The content
   *
   * @return array An array of i18n strings
   */
  public function extract($content)
  {
    $strings = array();

    $config = sfYaml::load($content);

    // New validate.yml format

    // fields
    if (isset($config['fields']))
    {
      foreach ($config['fields'] as $field => $validation)
      {
        foreach ($validation as $type => $parameters)
        {
          if (!is_array($parameters))
          {
            continue;
          }

          foreach ($parameters as $key => $value)
          {
            if (preg_match('/(msg|error)$/', $key))
            {
              $strings[] = $value;
            }
          }
        }
      }
    }

    // validators
    if (isset($config['validators']))
    {
      foreach (array_keys($config['validators']) as $name)
      {
        if (!isset($config['validators'][$name]['param']))
        {
          continue;
        }

        foreach ($config['validators'][$name]['param'] as $key => $value)
        {
          if (preg_match('/(msg|error)$/', $key))
          {
            $strings[] = $value;
          }
        }
      }
    }

    // Old validate.yml format

    // required messages
    if (isset($config['names']))
    {
      foreach ($config['names'] as $key => $value)
      {
        if (isset($value['required_msg']))
        {
          $strings[] = $value['required_msg'];
        }
      }
    }

    // validators
    foreach ($config as $key => $value)
    {
      if (isset($value['param']) && isset($value['class']))
      {
        foreach ($value['param'] as $key => $value)
        {
          if (preg_match('/(msg|error)$/', $key))
          {
            $strings[] = $value;
          }
        }
      }
    }

    return $strings;
  }
}