sfI18nExtractorInterface.class.php 709 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /*
  3. * This file is part of the symfony package.
  4. * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
  5. *
  6. * For the full copyright and license information, please view the LICENSE
  7. * file that was distributed with this source code.
  8. */
  9. /**
  10. * @package symfony
  11. * @subpackage i18n
  12. * @author Fabien Potencier <fabien.potencier@symfony-project.com>
  13. * @version SVN: $Id: sfI18nExtractorInterface.class.php 9128 2008-05-21 00:58:19Z Carl.Vondrick $
  14. */
  15. interface sfI18nExtractorInterface
  16. {
  17. /**
  18. * Extract i18n strings for the given content.
  19. *
  20. * @param string $content The content
  21. *
  22. * @return array An array of i18n strings
  23. */
  24. public function extract($content);
  25. }