1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15:
<?php
namespace Omeka\Service\ControllerPlugin;
use Interop\Container\ContainerInterface;
use Omeka\Mvc\Controller\Plugin\ViewHelpers;
use Zend\ServiceManager\Factory\FactoryInterface;
class ViewHelpersFactory implements FactoryInterface
{
public function __invoke(ContainerInterface $services, $requestedName, array $options = null)
{
return new ViewHelpers($services->get('ViewHelperManager'));
}
}