HelperHelper.php 596 B

1234567891011121314151617181920212223
  1. <?php
  2. /*
  3. * This file is part of the symfony package.
  4. * (c) 2004-2006 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. * HelperHelper.
  11. *
  12. * @package symfony
  13. * @subpackage helper
  14. * @author Fabien Potencier <fabien.potencier@symfony-project.com>
  15. * @version SVN: $Id: HelperHelper.php 7757 2008-03-07 10:55:22Z fabien $
  16. */
  17. function use_helper()
  18. {
  19. sfLoader::loadHelpers(func_get_args(), sfContext::getInstance()->getModuleName());
  20. }