1. sfI18nExtractorInterface.class.php
  2. /** * @package symfony * @subpackage i18n * @author Fabien Potencier * @version SVN: $Id: sfI18nExtractorInterface.class.php 9128 2008-05-21 00:58:19Z Carl.Vondrick $ */
  3. interface sfI18nExtractorInterface
  4. {
  5. /**
  6. * Extract i18n strings for the given content.
  7. *
  8. * @param string $content The content
  9. *
  10. * @return array An array of i18n strings
  11. */
  12. public function extract($content);
  13. }

Debug toolbar