Added Feed loop to retreive feeds using SimplePie

This commit is contained in:
franck
2013-07-06 10:18:19 +02:00
parent 962afc6d14
commit 6e5b259d44
11 changed files with 339 additions and 42 deletions

View File

@@ -3,7 +3,7 @@
namespace Thelia\Model;
use Thelia\Model\om\BaseAdmin;
use Symfony\Component\Security\Core\User\UserInterface;
use Thelia\Core\Security\User\UserInterface;
/**
* Skeleton subclass for representing a row from the 'admin' table.
@@ -36,7 +36,7 @@ class Admin extends BaseAdmin implements UserInterface
* {@inheritDoc}
*/
public function getRoles() {
return array(new Role('USER_CUSTOMER'));
return array(new Role('USER_ADMIN'));
}
}