1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16:
<?php
namespace Omeka\Service\ViewHelper;
use Omeka\View\Helper\Setting;
use Zend\ServiceManager\Factory\FactoryInterface;
use Interop\Container\ContainerInterface;
class UserSettingFactory implements FactoryInterface
{
public function __invoke(ContainerInterface $services, $requestedName, array $options = null)
{
return new Setting($services->get('Omeka\Settings\User'));
}
}