diff --git a/tests/Alchemy/Tests/Phrasea/ApplicationTest.php b/tests/Alchemy/Tests/Phrasea/ApplicationTest.php
index 9c01ff1686..9568ce40fa 100644
--- a/tests/Alchemy/Tests/Phrasea/ApplicationTest.php
+++ b/tests/Alchemy/Tests/Phrasea/ApplicationTest.php
@@ -341,7 +341,7 @@ class ApplicationTest extends \PhraseanetTestCase
*/
public function testCachedTranslator($key, $locale, $expected)
{
- $tempDir = __DIR__ . '/temp-trans';
+ $tempDir = sys_get_temp_dir() . '/temp-trans';
$this->cleanupTempDir($tempDir);
$app = $this->getPreparedApp($tempDir);
diff --git a/tests/Alchemy/Tests/Phrasea/Controller/Prod/DoDownloadTest.php b/tests/Alchemy/Tests/Phrasea/Controller/Prod/DoDownloadTest.php
index 7cbefe58bf..f3d4d66f4f 100644
--- a/tests/Alchemy/Tests/Phrasea/Controller/Prod/DoDownloadTest.php
+++ b/tests/Alchemy/Tests/Phrasea/Controller/Prod/DoDownloadTest.php
@@ -170,14 +170,14 @@ class DoDownloadTest extends \PhraseanetAuthenticatedWebTestCase
self::$DI['app'],
$token,
$list,
- sprintf('%s/../../../../../../tmp/download/%s.zip', __DIR__, $token->getValue()) // Dest file
+ sprintf('%s/%s.zip', self::$DI['app']['tmp.download.path'], $token->getValue()) // Dest file
);
// Check response
$url = sprintf('/download/%s/get/', $token->getValue());
self::$DI['client']->request('POST', $url);
$response = self::$DI['client']->getResponse();
- $this->assertTrue($response->isOk());
+ $this->assertTrue($response->isOk(),$response);
$this->assertRegExp('#attachment#', $response->headers->get('content-disposition'));
$this->assertEquals('application/zip', $response->headers->get('content-type'));
$nbRowLogsAfter = $this->getNbRowLogs(self::$DI['record_1']->get_databox());
diff --git a/tests/Alchemy/Tests/Phrasea/Controller/Prod/LazaretTest.php b/tests/Alchemy/Tests/Phrasea/Controller/Prod/LazaretTest.php
index 3a611b68ec..62a213f2da 100644
--- a/tests/Alchemy/Tests/Phrasea/Controller/Prod/LazaretTest.php
+++ b/tests/Alchemy/Tests/Phrasea/Controller/Prod/LazaretTest.php
@@ -134,8 +134,8 @@ class LazaretTest extends \PhraseanetAuthenticatedWebTestCase
$lazaretFile = $this->getOneLazaretFile();
- $lazaretFileName = self::$DI['app']['root.path'] . '/tmp/lazaret/' . $lazaretFile->getFilename();
- $lazaretThumbFileName = self::$DI['app']['root.path'] . '/tmp/lazaret/' . $lazaretFile->getThumbFilename();
+ $lazaretFileName = self::$DI['app']['tmp.lazaret.path'].'/'.$lazaretFile->getFilename();
+ $lazaretThumbFileName = self::$DI['app']['tmp.lazaret.path'].'/'.$lazaretFile->getThumbFilename();
copy(__DIR__ . '/../../../../../files/cestlafete.jpg', $lazaretFileName);
copy(__DIR__ . '/../../../../../files/cestlafete.jpg', $lazaretThumbFileName);
@@ -341,7 +341,7 @@ class LazaretTest extends \PhraseanetAuthenticatedWebTestCase
->method('getRecordsToSubstitute')
->will($this->returnValue([self::$DI['record_2'], self::$DI['record_1']]));
- copy(__DIR__ . '/../../../../../files/cestlafete.jpg', __DIR__ . '/../../../../../../tmp/lazaret/cestlafete.jpg');
+ copy(__DIR__ . '/../../../../../files/cestlafete.jpg', self::$DI['app']['tmp.lazaret.path'].'/cestlafete.jpg');
$lazaretFile->expects($this->any())
->method('getFilename')
@@ -468,7 +468,7 @@ class LazaretTest extends \PhraseanetAuthenticatedWebTestCase
{
$lazaretFile = $this->getMock('Alchemy\Phrasea\Model\Entities\LazaretFile', [], [], '', false);
- copy(__DIR__ . '/../../../../../files/cestlafete.jpg', __DIR__ . '/../../../../../../tmp/lazaret/cestlafete.jpg');
+ copy(__DIR__ . '/../../../../../files/cestlafete.jpg', self::$DI['app']['tmp.lazaret.path'].'/cestlafete.jpg');
$lazaretFile->expects($this->any())
->method('getThumbFilename')
diff --git a/tests/Alchemy/Tests/Phrasea/Controller/SetupTest.php b/tests/Alchemy/Tests/Phrasea/Controller/SetupTest.php
index ea0c4aa01c..183f8bbc59 100644
--- a/tests/Alchemy/Tests/Phrasea/Controller/SetupTest.php
+++ b/tests/Alchemy/Tests/Phrasea/Controller/SetupTest.php
@@ -121,7 +121,7 @@ class SetupTest extends \PhraseanetWebTestCase
$this->app['authentication'] = $authenticator;
$client = $this->createClient();
- $settings = Yaml::parse(file_get_contents(__DIR__ . '/../../../../../hudson/InstallDBs.yml'));
+ $settings = Yaml::parse(file_get_contents(__DIR__ . '/../../../../../resources/hudson/InstallDBs.yml'));
$settings = $settings['database'];
$host = isset($settings['host']) ? $settings['host'] : 'localhost';
diff --git a/tests/Alchemy/Tests/Phrasea/Core/Configuration/Fixtures/configuration-setup.yml b/tests/Alchemy/Tests/Phrasea/Core/Configuration/Fixtures/configuration-setup.yml
index 2121849d12..355ae28797 100644
--- a/tests/Alchemy/Tests/Phrasea/Core/Configuration/Fixtures/configuration-setup.yml
+++ b/tests/Alchemy/Tests/Phrasea/Core/Configuration/Fixtures/configuration-setup.yml
@@ -71,15 +71,13 @@ main:
mp4box_timeout: 60
swftools_timeout: 60
unoconv_timeout: 60
- task-manager:
- status: started
- listener:
- protocol: tcp
- host: 127.0.0.1
- port: 6700
storage:
- subdefs:
- default-dir: null
+ subdefs: null
+ cache: null
+ log : null
+ download: null
+ lazaret: null
+ caption: null
bridge:
youtube:
enabled: false
@@ -205,3 +203,8 @@ session:
idle: 0
# 1 week
lifetime: 604800
+crossdomain:
+ allow-access-from:
+ -
+ domain: '*.cooliris.com'
+ secure: 'false'
diff --git a/tests/Alchemy/Tests/Phrasea/Core/Configuration/Fixtures/configuration.yml b/tests/Alchemy/Tests/Phrasea/Core/Configuration/Fixtures/configuration.yml
index 2121849d12..355ae28797 100644
--- a/tests/Alchemy/Tests/Phrasea/Core/Configuration/Fixtures/configuration.yml
+++ b/tests/Alchemy/Tests/Phrasea/Core/Configuration/Fixtures/configuration.yml
@@ -71,15 +71,13 @@ main:
mp4box_timeout: 60
swftools_timeout: 60
unoconv_timeout: 60
- task-manager:
- status: started
- listener:
- protocol: tcp
- host: 127.0.0.1
- port: 6700
storage:
- subdefs:
- default-dir: null
+ subdefs: null
+ cache: null
+ log : null
+ download: null
+ lazaret: null
+ caption: null
bridge:
youtube:
enabled: false
@@ -205,3 +203,8 @@ session:
idle: 0
# 1 week
lifetime: 604800
+crossdomain:
+ allow-access-from:
+ -
+ domain: '*.cooliris.com'
+ secure: 'false'
diff --git a/tests/Alchemy/Tests/Phrasea/Setup/AbstractSetupTester.php b/tests/Alchemy/Tests/Phrasea/Setup/AbstractSetupTester.php
index 6cb7bcc74c..17c0d02a55 100644
--- a/tests/Alchemy/Tests/Phrasea/Setup/AbstractSetupTester.php
+++ b/tests/Alchemy/Tests/Phrasea/Setup/AbstractSetupTester.php
@@ -33,7 +33,7 @@ abstract class AbstractSetupTester extends \PhraseanetTestCase
$this->uninstall();
- copy(__DIR__ . '/../../../../../hudson/_GV.php', __DIR__ . '/../../../../../config/_GV.php');
+ copy(__DIR__ . '/../../../../../resources/hudson/_GV.php', __DIR__ . '/../../../../../config/_GV.php');
file_put_contents( __DIR__ . '/../../../../../config/_GV.php', str_replace('http://local.phrasea/', 'http://local.phrasea.tester/', file_get_contents( __DIR__ . '/../../../../../config/_GV.php')));
diff --git a/tests/Alchemy/Tests/Phrasea/Setup/InstallerTest.php b/tests/Alchemy/Tests/Phrasea/Setup/InstallerTest.php
index 89f748387b..652b88ba0b 100644
--- a/tests/Alchemy/Tests/Phrasea/Setup/InstallerTest.php
+++ b/tests/Alchemy/Tests/Phrasea/Setup/InstallerTest.php
@@ -45,7 +45,7 @@ class InstallerTest extends \PhraseanetTestCase
@unlink($configFile);
@unlink($compiledFile);
- $app['configuration.store'] = new Configuration(new Yaml(), new Compiler(), $config, $compiled, true);
+ $app['configuration.store'] = new Configuration(new Yaml(), new Compiler(), $configFile, $compiledFile, true);
$abConn = self::$DI['app']['dbal.provider']->get([
'host' => 'localhost',
@@ -74,7 +74,7 @@ class InstallerTest extends \PhraseanetTestCase
$dataPath = __DIR__ . '/../../../../../datas/';
$installer = new Installer($app);
- $installer->install(uniqid('admin') . '@example.com', 'sdfsdsd', $abConn, 'http://local.phrasea.test.installer/', $dataPath, $dbConn, $template);
+ $installer->install(uniqid('admin') . '@example.com', 'sdfsdsd', $abConn, 'http://local.phrasea.test.installer/', $dataPath, $dbConn, 'en');
$this->assertTrue($app['configuration.store']->isSetup());
$this->assertTrue($app['phraseanet.configuration-tester']->isUpToDate());
diff --git a/tests/Alchemy/Tests/Phrasea/Setup/Version/PreSchemaUpgrade/Upgrade39UsersTest.php b/tests/Alchemy/Tests/Phrasea/Setup/Version/PreSchemaUpgrade/Upgrade39UsersTest.php
index 2c3feda712..e714699aa7 100644
--- a/tests/Alchemy/Tests/Phrasea/Setup/Version/PreSchemaUpgrade/Upgrade39UsersTest.php
+++ b/tests/Alchemy/Tests/Phrasea/Setup/Version/PreSchemaUpgrade/Upgrade39UsersTest.php
@@ -103,8 +103,8 @@ class Upgrade39UsersTest extends \PhraseanetTestCase
public function provideVariousFixtures()
{
return [
- ['tests/update39_fixtureFrom38.sql'],
- ['tests/update39_fixtureFrom31.sql'],
+ ['tests/fixtures/update39_fixtureFrom38.sql'],
+ ['tests/fixtures/update39_fixtureFrom31.sql'],
];
}
diff --git a/tests/classes/PhraseanetTestCase.php b/tests/classes/PhraseanetTestCase.php
index c142c657f0..47820c0169 100644
--- a/tests/classes/PhraseanetTestCase.php
+++ b/tests/classes/PhraseanetTestCase.php
@@ -46,14 +46,17 @@ abstract class PhraseanetTestCase extends WebTestCase
private static $fixtureIds = [];
- protected function initializeSqliteDB($path = '/tmp/db.sqlite')
+ protected function initializeSqliteDB($path = null)
{
+ if (null === $path) {
+ $path = sys_get_temp_dir().'/db.sqlite';
+ }
$path = $path . getmypid();
if (is_file($path)) {
unlink($path);
}
- copy(__DIR__ . '/../db-ref.sqlite', $path);
+ copy(sys_get_temp_dir().'/db-ref.sqlite', $path);
}
public function getApplicationPath()
@@ -250,7 +253,7 @@ abstract class PhraseanetTestCase extends WebTestCase
exit(1);
}
- self::$fixtureIds = array_merge(self::$fixtureIds, json_decode(file_get_contents(__DIR__ .'/../fixtures.json'), true));
+ self::$fixtureIds = array_merge(self::$fixtureIds, json_decode(file_get_contents(sys_get_temp_dir().'/fixtures.json'), true));
self::resetUsersRights(self::$DI['app'], self::$DI['user']);
self::resetUsersRights(self::$DI['app'], self::$DI['user_notAdmin']);
diff --git a/tests/update39_fixtureFrom31.sql b/tests/fixtures/update39_fixtureFrom31.sql
similarity index 100%
rename from tests/update39_fixtureFrom31.sql
rename to tests/fixtures/update39_fixtureFrom31.sql
diff --git a/tests/update39_fixtureFrom38.sql b/tests/fixtures/update39_fixtureFrom38.sql
similarity index 100%
rename from tests/update39_fixtureFrom38.sql
rename to tests/fixtures/update39_fixtureFrom38.sql
diff --git a/tmp/.gitignore b/tmp/.gitignore
deleted file mode 100644
index a2ae30c907..0000000000
--- a/tmp/.gitignore
+++ /dev/null
@@ -1,3 +0,0 @@
-*
-!.gitignore
-!doctrine-proxies/*
diff --git a/tmp/batches/.gitignore b/tmp/batches/.gitignore
deleted file mode 100644
index d6b7ef32c8..0000000000
--- a/tmp/batches/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-*
-!.gitignore
diff --git a/tmp/cache/profiler/.gitignore b/tmp/cache/profiler/.gitignore
deleted file mode 100644
index d6b7ef32c8..0000000000
--- a/tmp/cache/profiler/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-*
-!.gitignore
diff --git a/tmp/cache_minify/.gitignore b/tmp/cache_minify/.gitignore
deleted file mode 100644
index d6b7ef32c8..0000000000
--- a/tmp/cache_minify/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-*
-!.gitignore
diff --git a/tmp/cache_twig/.gitignore b/tmp/cache_twig/.gitignore
deleted file mode 100644
index d6b7ef32c8..0000000000
--- a/tmp/cache_twig/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-*
-!.gitignore
diff --git a/tmp/caption/.gitkeep b/tmp/caption/.gitkeep
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/tmp/desc_tmp/.gitignore b/tmp/desc_tmp/.gitignore
deleted file mode 100644
index d6b7ef32c8..0000000000
--- a/tmp/desc_tmp/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-*
-!.gitignore
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesAggregateToken.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesAggregateToken.php
deleted file mode 100644
index 40d9276ab2..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesAggregateToken.php
+++ /dev/null
@@ -1,235 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AggregateToken' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AggregateToken' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AggregateToken' . "\0" . 'value');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AggregateToken' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AggregateToken' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AggregateToken' . "\0" . 'value');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (AggregateToken $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUser(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', array($user));
-
- return parent::setUser($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUser()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', array());
-
- return parent::getUser();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setValue($value)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setValue', array($value));
-
- return parent::setValue($value);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getValue()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getValue', array());
-
- return parent::getValue();
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesAuthFailure.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesAuthFailure.php
deleted file mode 100644
index 464185f6a5..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesAuthFailure.php
+++ /dev/null
@@ -1,279 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AuthFailure' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AuthFailure' . "\0" . 'username', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AuthFailure' . "\0" . 'ip', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AuthFailure' . "\0" . 'locked', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AuthFailure' . "\0" . 'created');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AuthFailure' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AuthFailure' . "\0" . 'username', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AuthFailure' . "\0" . 'ip', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AuthFailure' . "\0" . 'locked', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\AuthFailure' . "\0" . 'created');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (AuthFailure $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUsername($username)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUsername', array($username));
-
- return parent::setUsername($username);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUsername()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUsername', array());
-
- return parent::getUsername();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setIp($ip)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setIp', array($ip));
-
- return parent::setIp($ip);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getIp()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getIp', array());
-
- return parent::getIp();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setLocked($locked)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLocked', array($locked));
-
- return parent::setLocked($locked);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getLocked()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getLocked', array());
-
- return parent::getLocked();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreated(\DateTime $created)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', array($created));
-
- return parent::setCreated($created);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', array());
-
- return parent::getCreated();
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesBasket.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesBasket.php
deleted file mode 100644
index 1655eaddd6..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesBasket.php
+++ /dev/null
@@ -1,477 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'description', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'is_read', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'pusher', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'archived', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'validation', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'elements', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'order');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'description', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'is_read', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'pusher', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'archived', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'validation', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'elements', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Basket' . "\0" . 'order');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (Basket $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setName($name)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', array($name));
-
- return parent::setName($name);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getName()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', array());
-
- return parent::getName();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setDescription($description)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setDescription', array($description));
-
- return parent::setDescription($description);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getDescription()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getDescription', array());
-
- return parent::getDescription();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUser(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', array($user));
-
- return parent::setUser($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUser()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', array());
-
- return parent::getUser();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setIsRead($isRead)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setIsRead', array($isRead));
-
- return parent::setIsRead($isRead);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getIsRead()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getIsRead', array());
-
- return parent::getIsRead();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setPusher(\Alchemy\Phrasea\Model\Entities\User $user = NULL)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setPusher', array($user));
-
- return parent::setPusher($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getPusher()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPusher', array());
-
- return parent::getPusher();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setArchived($archived)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setArchived', array($archived));
-
- return parent::setArchived($archived);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getArchived()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getArchived', array());
-
- return parent::getArchived();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreated(\DateTime $created)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', array($created));
-
- return parent::setCreated($created);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', array());
-
- return parent::getCreated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUpdated(\DateTime $updated)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', array($updated));
-
- return parent::setUpdated($updated);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUpdated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', array());
-
- return parent::getUpdated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setValidation(\Alchemy\Phrasea\Model\Entities\ValidationSession $validation = NULL)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setValidation', array($validation));
-
- return parent::setValidation($validation);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getValidation()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getValidation', array());
-
- return parent::getValidation();
- }
-
- /**
- * {@inheritDoc}
- */
- public function addElement(\Alchemy\Phrasea\Model\Entities\BasketElement $elements)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'addElement', array($elements));
-
- return parent::addElement($elements);
- }
-
- /**
- * {@inheritDoc}
- */
- public function removeElement(\Alchemy\Phrasea\Model\Entities\BasketElement $elements)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeElement', array($elements));
-
- return parent::removeElement($elements);
- }
-
- /**
- * {@inheritDoc}
- */
- public function setOrder(\Alchemy\Phrasea\Model\Entities\Order $order = NULL)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setOrder', array($order));
-
- return parent::setOrder($order);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getOrder()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getOrder', array());
-
- return parent::getOrder();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getElements()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getElements', array());
-
- return parent::getElements();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getElementsByOrder($ordre)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getElementsByOrder', array($ordre));
-
- return parent::getElementsByOrder($ordre);
- }
-
- /**
- * {@inheritDoc}
- */
- public function hasRecord(\Alchemy\Phrasea\Application $app, \record_adapter $record)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'hasRecord', array($app, $record));
-
- return parent::hasRecord($app, $record);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getSize(\Alchemy\Phrasea\Application $app)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSize', array($app));
-
- return parent::getSize($app);
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesBasketElement.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesBasketElement.php
deleted file mode 100644
index abe2d4ce90..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesBasketElement.php
+++ /dev/null
@@ -1,400 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'record_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'sbas_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'ord', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'validation_datas', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'basket');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'record_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'sbas_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'ord', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'validation_datas', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\BasketElement' . "\0" . 'basket');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (BasketElement $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setRecordId($recordId)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRecordId', array($recordId));
-
- return parent::setRecordId($recordId);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getRecordId()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRecordId', array());
-
- return parent::getRecordId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setSbasId($sbasId)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSbasId', array($sbasId));
-
- return parent::setSbasId($sbasId);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getSbasId()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSbasId', array());
-
- return parent::getSbasId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getRecord(\Alchemy\Phrasea\Application $app)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRecord', array($app));
-
- return parent::getRecord($app);
- }
-
- /**
- * {@inheritDoc}
- */
- public function setRecord(\record_adapter $record)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRecord', array($record));
-
- return parent::setRecord($record);
- }
-
- /**
- * {@inheritDoc}
- */
- public function setOrd($ord)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setOrd', array($ord));
-
- return parent::setOrd($ord);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getOrd()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getOrd', array());
-
- return parent::getOrd();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreated(\DateTime $created)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', array($created));
-
- return parent::setCreated($created);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', array());
-
- return parent::getCreated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUpdated(\DateTime $updated)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', array($updated));
-
- return parent::setUpdated($updated);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUpdated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', array());
-
- return parent::getUpdated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function addValidationData(\Alchemy\Phrasea\Model\Entities\ValidationData $validationDatas)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'addValidationData', array($validationDatas));
-
- return parent::addValidationData($validationDatas);
- }
-
- /**
- * {@inheritDoc}
- */
- public function removeValidationData(\Alchemy\Phrasea\Model\Entities\ValidationData $validationDatas)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeValidationData', array($validationDatas));
-
- return parent::removeValidationData($validationDatas);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getValidationDatas()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getValidationDatas', array());
-
- return parent::getValidationDatas();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setBasket(\Alchemy\Phrasea\Model\Entities\Basket $basket = NULL)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setBasket', array($basket));
-
- return parent::setBasket($basket);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getBasket()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getBasket', array());
-
- return parent::getBasket();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setLastInBasket()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLastInBasket', array());
-
- return parent::setLastInBasket();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUserValidationDatas(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUserValidationDatas', array($user));
-
- return parent::getUserValidationDatas($user);
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesFeed.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesFeed.php
deleted file mode 100644
index 0e6ed3d591..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesFeed.php
+++ /dev/null
@@ -1,587 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'public', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'iconUrl', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'baseId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'title', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'subtitle', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'createdOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'updatedOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'publishers', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'entries', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'tokens');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'public', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'iconUrl', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'baseId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'title', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'subtitle', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'createdOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'updatedOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'publishers', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'entries', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Feed' . "\0" . 'tokens');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (Feed $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setIsPublic($public)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setIsPublic', array($public));
-
- return parent::setIsPublic($public);
- }
-
- /**
- * {@inheritDoc}
- */
- public function isPublic()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isPublic', array());
-
- return parent::isPublic();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setIconUrl($iconUrl)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setIconUrl', array($iconUrl));
-
- return parent::setIconUrl($iconUrl);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getIconUrl()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getIconUrl', array());
-
- return parent::getIconUrl();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setBaseId($baseId)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setBaseId', array($baseId));
-
- return parent::setBaseId($baseId);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getBaseId()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getBaseId', array());
-
- return parent::getBaseId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setTitle($title)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setTitle', array($title));
-
- return parent::setTitle($title);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getTitle()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getTitle', array());
-
- return parent::getTitle();
- }
-
- /**
- * {@inheritDoc}
- */
- public function addPublisher(\Alchemy\Phrasea\Model\Entities\FeedPublisher $publishers)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'addPublisher', array($publishers));
-
- return parent::addPublisher($publishers);
- }
-
- /**
- * {@inheritDoc}
- */
- public function removePublisher(\Alchemy\Phrasea\Model\Entities\FeedPublisher $publishers)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'removePublisher', array($publishers));
-
- return parent::removePublisher($publishers);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getPublishers()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPublishers', array());
-
- return parent::getPublishers();
- }
-
- /**
- * {@inheritDoc}
- */
- public function addEntry(\Alchemy\Phrasea\Model\Entities\FeedEntry $entries)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'addEntry', array($entries));
-
- return parent::addEntry($entries);
- }
-
- /**
- * {@inheritDoc}
- */
- public function removeEntry(\Alchemy\Phrasea\Model\Entities\FeedEntry $entries)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeEntry', array($entries));
-
- return parent::removeEntry($entries);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getEntries($offset_start = 0, $how_many = NULL)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getEntries', array($offset_start, $how_many));
-
- return parent::getEntries($offset_start, $how_many);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getOwner()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getOwner', array());
-
- return parent::getOwner();
- }
-
- /**
- * {@inheritDoc}
- */
- public function isOwner(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isOwner', array($user));
-
- return parent::isOwner($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCollection(\Alchemy\Phrasea\Application $app)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCollection', array($app));
-
- return parent::getCollection($app);
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCollection(\collection $collection = NULL)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCollection', array($collection));
-
- return parent::setCollection($collection);
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreatedOn($createdOn)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreatedOn', array($createdOn));
-
- return parent::setCreatedOn($createdOn);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreatedOn()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreatedOn', array());
-
- return parent::getCreatedOn();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUpdatedOn($updatedOn)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdatedOn', array($updatedOn));
-
- return parent::setUpdatedOn($updatedOn);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUpdatedOn()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdatedOn', array());
-
- return parent::getUpdatedOn();
- }
-
- /**
- * {@inheritDoc}
- */
- public function isPublisher(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isPublisher', array($user));
-
- return parent::isPublisher($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getPublisher(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPublisher', array($user));
-
- return parent::getPublisher($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function setSubtitle($subtitle)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSubtitle', array($subtitle));
-
- return parent::setSubtitle($subtitle);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getSubtitle()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSubtitle', array());
-
- return parent::getSubtitle();
- }
-
- /**
- * {@inheritDoc}
- */
- public function isAggregated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isAggregated', array());
-
- return parent::isAggregated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCountTotalEntries()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCountTotalEntries', array());
-
- return parent::getCountTotalEntries();
- }
-
- /**
- * {@inheritDoc}
- */
- public function hasAccess(\Alchemy\Phrasea\Model\Entities\User $user, \Alchemy\Phrasea\Application $app)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'hasAccess', array($user, $app));
-
- return parent::hasAccess($user, $app);
- }
-
- /**
- * {@inheritDoc}
- */
- public function addToken(\Alchemy\Phrasea\Model\Entities\FeedToken $tokens)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'addToken', array($tokens));
-
- return parent::addToken($tokens);
- }
-
- /**
- * {@inheritDoc}
- */
- public function removeToken(\Alchemy\Phrasea\Model\Entities\FeedToken $tokens)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeToken', array($tokens));
-
- return parent::removeToken($tokens);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getTokens()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getTokens', array());
-
- return parent::getTokens();
- }
-
- /**
- * {@inheritDoc}
- */
- public function addEntrie(\Alchemy\Phrasea\Model\Entities\FeedEntry $entries)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'addEntrie', array($entries));
-
- return parent::addEntrie($entries);
- }
-
- /**
- * {@inheritDoc}
- */
- public function removeEntrie(\Alchemy\Phrasea\Model\Entities\FeedEntry $entries)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeEntrie', array($entries));
-
- return parent::removeEntrie($entries);
- }
-
- /**
- * {@inheritDoc}
- */
- public function hasPage($pageNumber, $nbEntriesByPage)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'hasPage', array($pageNumber, $nbEntriesByPage));
-
- return parent::hasPage($pageNumber, $nbEntriesByPage);
- }
-
- /**
- * {@inheritDoc}
- */
- public function isAccessible(\Alchemy\Phrasea\Model\Entities\User $user, \Alchemy\Phrasea\Application $app)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isAccessible', array($user, $app));
-
- return parent::isAccessible($user, $app);
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesFeedEntry.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesFeedEntry.php
deleted file mode 100644
index 2155f48f67..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesFeedEntry.php
+++ /dev/null
@@ -1,422 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'title', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'subtitle', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'authorName', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'authorEmail', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'createdOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'updatedOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'items', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'publisher', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'feed');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'title', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'subtitle', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'authorName', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'authorEmail', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'createdOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'updatedOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'items', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'publisher', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedEntry' . "\0" . 'feed');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (FeedEntry $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setTitle($title)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setTitle', array($title));
-
- return parent::setTitle($title);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getTitle()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getTitle', array());
-
- return parent::getTitle();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setSubtitle($subtitle)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSubtitle', array($subtitle));
-
- return parent::setSubtitle($subtitle);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getSubtitle()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSubtitle', array());
-
- return parent::getSubtitle();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setAuthorName($authorName)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setAuthorName', array($authorName));
-
- return parent::setAuthorName($authorName);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getAuthorName()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getAuthorName', array());
-
- return parent::getAuthorName();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setAuthorEmail($authorEmail)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setAuthorEmail', array($authorEmail));
-
- return parent::setAuthorEmail($authorEmail);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getAuthorEmail()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getAuthorEmail', array());
-
- return parent::getAuthorEmail();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreatedOn($createdOn)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreatedOn', array($createdOn));
-
- return parent::setCreatedOn($createdOn);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreatedOn()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreatedOn', array());
-
- return parent::getCreatedOn();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUpdatedOn($updatedOn)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdatedOn', array($updatedOn));
-
- return parent::setUpdatedOn($updatedOn);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUpdatedOn()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdatedOn', array());
-
- return parent::getUpdatedOn();
- }
-
- /**
- * {@inheritDoc}
- */
- public function addItem(\Alchemy\Phrasea\Model\Entities\FeedItem $items)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'addItem', array($items));
-
- return parent::addItem($items);
- }
-
- /**
- * {@inheritDoc}
- */
- public function removeItem(\Alchemy\Phrasea\Model\Entities\FeedItem $items)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeItem', array($items));
-
- return parent::removeItem($items);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getItems()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getItems', array());
-
- return parent::getItems();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setPublisher(\Alchemy\Phrasea\Model\Entities\FeedPublisher $publisher = NULL)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setPublisher', array($publisher));
-
- return parent::setPublisher($publisher);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getPublisher()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPublisher', array());
-
- return parent::getPublisher();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setFeed(\Alchemy\Phrasea\Model\Entities\Feed $feed = NULL)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setFeed', array($feed));
-
- return parent::setFeed($feed);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getFeed()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getFeed', array());
-
- return parent::getFeed();
- }
-
- /**
- * {@inheritDoc}
- */
- public function isPublisher(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isPublisher', array($user));
-
- return parent::isPublisher($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getItem($id)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getItem', array($id));
-
- return parent::getItem($id);
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesFeedItem.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesFeedItem.php
deleted file mode 100644
index b64d2d83a7..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesFeedItem.php
+++ /dev/null
@@ -1,345 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'recordId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'sbasId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'ord', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'createdOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'updatedOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'entry');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'recordId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'sbasId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'ord', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'createdOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'updatedOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedItem' . "\0" . 'entry');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (FeedItem $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setRecordId($recordId)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRecordId', array($recordId));
-
- return parent::setRecordId($recordId);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getRecordId()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRecordId', array());
-
- return parent::getRecordId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setSbasId($sbasId)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSbasId', array($sbasId));
-
- return parent::setSbasId($sbasId);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getSbasId()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSbasId', array());
-
- return parent::getSbasId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setEntry(\Alchemy\Phrasea\Model\Entities\FeedEntry $entry = NULL)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setEntry', array($entry));
-
- return parent::setEntry($entry);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getEntry()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getEntry', array());
-
- return parent::getEntry();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setOrd($ord)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setOrd', array($ord));
-
- return parent::setOrd($ord);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getOrd()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getOrd', array());
-
- return parent::getOrd();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreatedOn($createdOn)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreatedOn', array($createdOn));
-
- return parent::setCreatedOn($createdOn);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreatedOn()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreatedOn', array());
-
- return parent::getCreatedOn();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUpdatedOn($updatedOn)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdatedOn', array($updatedOn));
-
- return parent::setUpdatedOn($updatedOn);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUpdatedOn()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdatedOn', array());
-
- return parent::getUpdatedOn();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setLastInFeedItem()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLastInFeedItem', array());
-
- return parent::setLastInFeedItem();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getRecord(\Alchemy\Phrasea\Application $app)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRecord', array($app));
-
- return parent::getRecord($app);
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesFeedPublisher.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesFeedPublisher.php
deleted file mode 100644
index a1a4c9cc11..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesFeedPublisher.php
+++ /dev/null
@@ -1,279 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedPublisher' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedPublisher' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedPublisher' . "\0" . 'owner', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedPublisher' . "\0" . 'createdOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedPublisher' . "\0" . 'feed');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedPublisher' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedPublisher' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedPublisher' . "\0" . 'owner', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedPublisher' . "\0" . 'createdOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedPublisher' . "\0" . 'feed');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (FeedPublisher $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUser(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', array($user));
-
- return parent::setUser($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUser()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', array());
-
- return parent::getUser();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setIsOwner($owner)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setIsOwner', array($owner));
-
- return parent::setIsOwner($owner);
- }
-
- /**
- * {@inheritDoc}
- */
- public function isOwner()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isOwner', array());
-
- return parent::isOwner();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setFeed(\Alchemy\Phrasea\Model\Entities\Feed $feed = NULL)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setFeed', array($feed));
-
- return parent::setFeed($feed);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getFeed()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getFeed', array());
-
- return parent::getFeed();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreatedOn($createdOn)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreatedOn', array($createdOn));
-
- return parent::setCreatedOn($createdOn);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreatedOn()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreatedOn', array());
-
- return parent::getCreatedOn();
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesFeedToken.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesFeedToken.php
deleted file mode 100644
index ae7fbed674..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesFeedToken.php
+++ /dev/null
@@ -1,257 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedToken' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedToken' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedToken' . "\0" . 'value', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedToken' . "\0" . 'feed');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedToken' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedToken' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedToken' . "\0" . 'value', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FeedToken' . "\0" . 'feed');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (FeedToken $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUser(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', array($user));
-
- return parent::setUser($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUser()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', array());
-
- return parent::getUser();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setFeed(\Alchemy\Phrasea\Model\Entities\Feed $feed = NULL)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setFeed', array($feed));
-
- return parent::setFeed($feed);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getFeed()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getFeed', array());
-
- return parent::getFeed();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setValue($value)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setValue', array($value));
-
- return parent::setValue($value);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getValue()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getValue', array());
-
- return parent::getValue();
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesFtpCredential.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesFtpCredential.php
deleted file mode 100644
index 97edbbc390..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesFtpCredential.php
+++ /dev/null
@@ -1,433 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'active', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'address', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'login', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'password', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'receptionFolder', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'repositoryPrefixName', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'passive', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'ssl', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'maxRetry', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'updated');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'active', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'address', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'login', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'password', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'receptionFolder', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'repositoryPrefixName', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'passive', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'ssl', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'maxRetry', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpCredential' . "\0" . 'updated');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (FtpCredential $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUser()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', array());
-
- return parent::getUser();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUser(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', array($user));
-
- return parent::setUser($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function isActive()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isActive', array());
-
- return parent::isActive();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setActive($active)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setActive', array($active));
-
- return parent::setActive($active);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getAddress()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getAddress', array());
-
- return parent::getAddress();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setAddress($address)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setAddress', array($address));
-
- return parent::setAddress($address);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getLogin()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getLogin', array());
-
- return parent::getLogin();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setLogin($login)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLogin', array($login));
-
- return parent::setLogin($login);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getPassword()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPassword', array());
-
- return parent::getPassword();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setPassword($password)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setPassword', array($password));
-
- return parent::setPassword($password);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getReceptionFolder()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getReceptionFolder', array());
-
- return parent::getReceptionFolder();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setReceptionFolder($receptionFolder)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setReceptionFolder', array($receptionFolder));
-
- return parent::setReceptionFolder($receptionFolder);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getRepositoryPrefixName()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRepositoryPrefixName', array());
-
- return parent::getRepositoryPrefixName();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setRepositoryPrefixName($repositoryPrefixName)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRepositoryPrefixName', array($repositoryPrefixName));
-
- return parent::setRepositoryPrefixName($repositoryPrefixName);
- }
-
- /**
- * {@inheritDoc}
- */
- public function isPassive()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isPassive', array());
-
- return parent::isPassive();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setPassive($passive)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setPassive', array($passive));
-
- return parent::setPassive($passive);
- }
-
- /**
- * {@inheritDoc}
- */
- public function isSsl()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isSsl', array());
-
- return parent::isSsl();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setSsl($ssl)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSsl', array($ssl));
-
- return parent::setSsl($ssl);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getMaxRetry()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getMaxRetry', array());
-
- return parent::getMaxRetry();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setMaxRetry($maxRetry)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setMaxRetry', array($maxRetry));
-
- return parent::setMaxRetry($maxRetry);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUpdated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', array());
-
- return parent::getUpdated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUpdated(\DateTime $updated)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', array($updated));
-
- return parent::setUpdated($updated);
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesFtpExport.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesFtpExport.php
deleted file mode 100644
index 80b18b5501..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesFtpExport.php
+++ /dev/null
@@ -1,609 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'crash', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'nbretry', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'mail', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'addr', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'ssl', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'login', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'pwd', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'passif', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'destfolder', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'sendermail', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'textMailSender', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'textMailReceiver', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'foldertocreate', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'logfile', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'elements', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'updated');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'crash', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'nbretry', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'mail', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'addr', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'ssl', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'login', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'pwd', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'passif', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'destfolder', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'sendermail', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'textMailSender', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'textMailReceiver', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'foldertocreate', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'logfile', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'elements', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExport' . "\0" . 'updated');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (FtpExport $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUser(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', array($user));
-
- return parent::setUser($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUser()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', array());
-
- return parent::getUser();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCrash($crash)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCrash', array($crash));
-
- return parent::setCrash($crash);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCrash()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCrash', array());
-
- return parent::getCrash();
- }
-
- /**
- * {@inheritDoc}
- */
- public function incrementCrash()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'incrementCrash', array());
-
- return parent::incrementCrash();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setNbretry($nbretry)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setNbretry', array($nbretry));
-
- return parent::setNbretry($nbretry);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getNbretry()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getNbretry', array());
-
- return parent::getNbretry();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setMail($mail)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setMail', array($mail));
-
- return parent::setMail($mail);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getMail()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getMail', array());
-
- return parent::getMail();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setAddr($addr)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setAddr', array($addr));
-
- return parent::setAddr($addr);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getAddr()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getAddr', array());
-
- return parent::getAddr();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setSsl($ssl)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSsl', array($ssl));
-
- return parent::setSsl($ssl);
- }
-
- /**
- * {@inheritDoc}
- */
- public function isSsl()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isSsl', array());
-
- return parent::isSsl();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setLogin($login)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLogin', array($login));
-
- return parent::setLogin($login);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getLogin()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getLogin', array());
-
- return parent::getLogin();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setPwd($pwd)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setPwd', array($pwd));
-
- return parent::setPwd($pwd);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getPwd()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPwd', array());
-
- return parent::getPwd();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setPassif($passif)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setPassif', array($passif));
-
- return parent::setPassif($passif);
- }
-
- /**
- * {@inheritDoc}
- */
- public function isPassif()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isPassif', array());
-
- return parent::isPassif();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setDestfolder($destfolder)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setDestfolder', array($destfolder));
-
- return parent::setDestfolder($destfolder);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getDestfolder()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getDestfolder', array());
-
- return parent::getDestfolder();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setSendermail($sendermail)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSendermail', array($sendermail));
-
- return parent::setSendermail($sendermail);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getSendermail()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSendermail', array());
-
- return parent::getSendermail();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setTextMailSender($textMailSender)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setTextMailSender', array($textMailSender));
-
- return parent::setTextMailSender($textMailSender);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getTextMailSender()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getTextMailSender', array());
-
- return parent::getTextMailSender();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setTextMailReceiver($textMailReceiver)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setTextMailReceiver', array($textMailReceiver));
-
- return parent::setTextMailReceiver($textMailReceiver);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getTextMailReceiver()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getTextMailReceiver', array());
-
- return parent::getTextMailReceiver();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setFoldertocreate($foldertocreate)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setFoldertocreate', array($foldertocreate));
-
- return parent::setFoldertocreate($foldertocreate);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getFoldertocreate()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getFoldertocreate', array());
-
- return parent::getFoldertocreate();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setLogfile($logfile)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLogfile', array($logfile));
-
- return parent::setLogfile($logfile);
- }
-
- /**
- * {@inheritDoc}
- */
- public function isLogfile()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isLogfile', array());
-
- return parent::isLogfile();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreated(\DateTime $created)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', array($created));
-
- return parent::setCreated($created);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', array());
-
- return parent::getCreated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUpdated(\DateTime $updated)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', array($updated));
-
- return parent::setUpdated($updated);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUpdated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', array());
-
- return parent::getUpdated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function addElement(\Alchemy\Phrasea\Model\Entities\FtpExportElement $elements)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'addElement', array($elements));
-
- return parent::addElement($elements);
- }
-
- /**
- * {@inheritDoc}
- */
- public function removeElement(\Alchemy\Phrasea\Model\Entities\FtpExportElement $elements)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeElement', array($elements));
-
- return parent::removeElement($elements);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getElements()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getElements', array());
-
- return parent::getElements();
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesFtpExportElement.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesFtpExportElement.php
deleted file mode 100644
index c495540671..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesFtpExportElement.php
+++ /dev/null
@@ -1,433 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'recordId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'baseId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'subdef', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'filename', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'folder', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'error', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'done', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'export', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'businessfields', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'updated');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'recordId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'baseId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'subdef', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'filename', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'folder', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'error', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'done', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'export', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'businessfields', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\FtpExportElement' . "\0" . 'updated');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (FtpExportElement $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setRecordId($recordId)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRecordId', array($recordId));
-
- return parent::setRecordId($recordId);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getRecordId()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRecordId', array());
-
- return parent::getRecordId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setBaseId($baseId)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setBaseId', array($baseId));
-
- return parent::setBaseId($baseId);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getBaseId()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getBaseId', array());
-
- return parent::getBaseId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setSubdef($subdef)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSubdef', array($subdef));
-
- return parent::setSubdef($subdef);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getSubdef()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSubdef', array());
-
- return parent::getSubdef();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setFilename($filename)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setFilename', array($filename));
-
- return parent::setFilename($filename);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getFilename()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getFilename', array());
-
- return parent::getFilename();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setFolder($folder)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setFolder', array($folder));
-
- return parent::setFolder($folder);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getFolder()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getFolder', array());
-
- return parent::getFolder();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setError($error)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setError', array($error));
-
- return parent::setError($error);
- }
-
- /**
- * {@inheritDoc}
- */
- public function isError()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isError', array());
-
- return parent::isError();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setDone($done)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setDone', array($done));
-
- return parent::setDone($done);
- }
-
- /**
- * {@inheritDoc}
- */
- public function isDone()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isDone', array());
-
- return parent::isDone();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setBusinessfields($businessfields)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setBusinessfields', array($businessfields));
-
- return parent::setBusinessfields($businessfields);
- }
-
- /**
- * {@inheritDoc}
- */
- public function isBusinessfields()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isBusinessfields', array());
-
- return parent::isBusinessfields();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreated(\DateTime $created)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', array($created));
-
- return parent::setCreated($created);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', array());
-
- return parent::getCreated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUpdated(\DateTime $updated)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', array($updated));
-
- return parent::setUpdated($updated);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUpdated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', array());
-
- return parent::getUpdated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setExport(\Alchemy\Phrasea\Model\Entities\FtpExport $export = NULL)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setExport', array($export));
-
- return parent::setExport($export);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getExport()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getExport', array());
-
- return parent::getExport();
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesLazaretAttribute.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesLazaretAttribute.php
deleted file mode 100644
index dca6ef0961..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesLazaretAttribute.php
+++ /dev/null
@@ -1,301 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretAttribute' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretAttribute' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretAttribute' . "\0" . 'value', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretAttribute' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretAttribute' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretAttribute' . "\0" . 'lazaretFile');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretAttribute' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretAttribute' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretAttribute' . "\0" . 'value', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretAttribute' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretAttribute' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretAttribute' . "\0" . 'lazaretFile');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (LazaretAttribute $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setName($name)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', array($name));
-
- return parent::setName($name);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getName()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', array());
-
- return parent::getName();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setValue($value)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setValue', array($value));
-
- return parent::setValue($value);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getValue()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getValue', array());
-
- return parent::getValue();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreated(\DateTime $created)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', array($created));
-
- return parent::setCreated($created);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', array());
-
- return parent::getCreated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUpdated(\DateTime $updated)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', array($updated));
-
- return parent::setUpdated($updated);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUpdated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', array());
-
- return parent::getUpdated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setLazaretFile(\Alchemy\Phrasea\Model\Entities\LazaretFile $lazaretFile = NULL)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLazaretFile', array($lazaretFile));
-
- return parent::setLazaretFile($lazaretFile);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getLazaretFile()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getLazaretFile', array());
-
- return parent::getLazaretFile();
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesLazaretCheck.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesLazaretCheck.php
deleted file mode 100644
index d3ccaa6a1e..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesLazaretCheck.php
+++ /dev/null
@@ -1,246 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretCheck' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretCheck' . "\0" . 'checkClassname', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretCheck' . "\0" . 'lazaretFile');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretCheck' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretCheck' . "\0" . 'checkClassname', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretCheck' . "\0" . 'lazaretFile');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (LazaretCheck $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCheckClassname($checkClassname)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCheckClassname', array($checkClassname));
-
- return parent::setCheckClassname($checkClassname);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCheckClassname()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCheckClassname', array());
-
- return parent::getCheckClassname();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setLazaretFile(\Alchemy\Phrasea\Model\Entities\LazaretFile $lazaretFile = NULL)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLazaretFile', array($lazaretFile));
-
- return parent::setLazaretFile($lazaretFile);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getLazaretFile()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getLazaretFile', array());
-
- return parent::getLazaretFile();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getMessage(\Symfony\Component\Translation\TranslatorInterface $translator)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getMessage', array($translator));
-
- return parent::getMessage($translator);
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesLazaretFile.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesLazaretFile.php
deleted file mode 100644
index b053209aa2..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesLazaretFile.php
+++ /dev/null
@@ -1,499 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'filename', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'thumbFilename', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'originalName', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'base_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'uuid', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'sha256', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'forced', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'attributes', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'checks', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'session');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'filename', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'thumbFilename', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'originalName', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'base_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'uuid', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'sha256', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'forced', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'attributes', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'checks', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretFile' . "\0" . 'session');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (LazaretFile $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setFilename($filename)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setFilename', array($filename));
-
- return parent::setFilename($filename);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getFilename()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getFilename', array());
-
- return parent::getFilename();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setThumbFilename($thumbFilename)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setThumbFilename', array($thumbFilename));
-
- return parent::setThumbFilename($thumbFilename);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getThumbFilename()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getThumbFilename', array());
-
- return parent::getThumbFilename();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setOriginalName($originalName)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setOriginalName', array($originalName));
-
- return parent::setOriginalName($originalName);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getOriginalName()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getOriginalName', array());
-
- return parent::getOriginalName();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setBaseId($baseId)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setBaseId', array($baseId));
-
- return parent::setBaseId($baseId);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getBaseId()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getBaseId', array());
-
- return parent::getBaseId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCollection(\Alchemy\Phrasea\Application $app)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCollection', array($app));
-
- return parent::getCollection($app);
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUuid($uuid)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUuid', array($uuid));
-
- return parent::setUuid($uuid);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUuid()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUuid', array());
-
- return parent::getUuid();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setSha256($sha256)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSha256', array($sha256));
-
- return parent::setSha256($sha256);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getSha256()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSha256', array());
-
- return parent::getSha256();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setForced($forced)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setForced', array($forced));
-
- return parent::setForced($forced);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getForced()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getForced', array());
-
- return parent::getForced();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreated(\DateTime $created)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', array($created));
-
- return parent::setCreated($created);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', array());
-
- return parent::getCreated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUpdated(\DateTime $updated)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', array($updated));
-
- return parent::setUpdated($updated);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUpdated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', array());
-
- return parent::getUpdated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function addAttribute(\Alchemy\Phrasea\Model\Entities\LazaretAttribute $attributes)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'addAttribute', array($attributes));
-
- return parent::addAttribute($attributes);
- }
-
- /**
- * {@inheritDoc}
- */
- public function removeAttribute(\Alchemy\Phrasea\Model\Entities\LazaretAttribute $attributes)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeAttribute', array($attributes));
-
- return parent::removeAttribute($attributes);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getAttributes()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getAttributes', array());
-
- return parent::getAttributes();
- }
-
- /**
- * {@inheritDoc}
- */
- public function addCheck(\Alchemy\Phrasea\Model\Entities\LazaretCheck $checks)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'addCheck', array($checks));
-
- return parent::addCheck($checks);
- }
-
- /**
- * {@inheritDoc}
- */
- public function removeCheck(\Alchemy\Phrasea\Model\Entities\LazaretCheck $checks)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeCheck', array($checks));
-
- return parent::removeCheck($checks);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getChecks()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getChecks', array());
-
- return parent::getChecks();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setSession(\Alchemy\Phrasea\Model\Entities\LazaretSession $session = NULL)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSession', array($session));
-
- return parent::setSession($session);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getSession()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSession', array());
-
- return parent::getSession();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getRecordsToSubstitute(\Alchemy\Phrasea\Application $app)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRecordsToSubstitute', array($app));
-
- return parent::getRecordsToSubstitute($app);
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesLazaretSession.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesLazaretSession.php
deleted file mode 100644
index 5c92d3fa0a..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesLazaretSession.php
+++ /dev/null
@@ -1,290 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretSession' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretSession' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretSession' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretSession' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretSession' . "\0" . 'files');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretSession' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretSession' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretSession' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretSession' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\LazaretSession' . "\0" . 'files');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (LazaretSession $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUser(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', array($user));
-
- return parent::setUser($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUser()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', array());
-
- return parent::getUser();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreated(\DateTime $created)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', array($created));
-
- return parent::setCreated($created);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', array());
-
- return parent::getCreated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUpdated(\DateTime $updated)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', array($updated));
-
- return parent::setUpdated($updated);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUpdated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', array());
-
- return parent::getUpdated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function addFile(\Alchemy\Phrasea\Model\Entities\LazaretFile $files)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'addFile', array($files));
-
- return parent::addFile($files);
- }
-
- /**
- * {@inheritDoc}
- */
- public function removeFile(\Alchemy\Phrasea\Model\Entities\LazaretFile $files)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeFile', array($files));
-
- return parent::removeFile($files);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getFiles()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getFiles', array());
-
- return parent::getFiles();
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesOrder.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesOrder.php
deleted file mode 100644
index 3c5235fb6e..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesOrder.php
+++ /dev/null
@@ -1,367 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'orderUsage', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'todo', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'deadline', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'createdOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'elements', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'basket');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'orderUsage', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'todo', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'deadline', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'createdOn', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'elements', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Order' . "\0" . 'basket');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (Order $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUser(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', array($user));
-
- return parent::setUser($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUser()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', array());
-
- return parent::getUser();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setDeadline($deadline)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setDeadline', array($deadline));
-
- return parent::setDeadline($deadline);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getDeadline()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getDeadline', array());
-
- return parent::getDeadline();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreatedOn($createdOn)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreatedOn', array($createdOn));
-
- return parent::setCreatedOn($createdOn);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreatedOn()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreatedOn', array());
-
- return parent::getCreatedOn();
- }
-
- /**
- * {@inheritDoc}
- */
- public function addElement(\Alchemy\Phrasea\Model\Entities\OrderElement $elements)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'addElement', array($elements));
-
- return parent::addElement($elements);
- }
-
- /**
- * {@inheritDoc}
- */
- public function removeElement(\Alchemy\Phrasea\Model\Entities\OrderElement $elements)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeElement', array($elements));
-
- return parent::removeElement($elements);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getElements()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getElements', array());
-
- return parent::getElements();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setTodo($todo)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setTodo', array($todo));
-
- return parent::setTodo($todo);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getTodo()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getTodo', array());
-
- return parent::getTodo();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getTotal()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getTotal', array());
-
- return parent::getTotal();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setOrderUsage($orderUsage)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setOrderUsage', array($orderUsage));
-
- return parent::setOrderUsage($orderUsage);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getOrderUsage()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getOrderUsage', array());
-
- return parent::getOrderUsage();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setBasket(\Alchemy\Phrasea\Model\Entities\Basket $basket = NULL)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setBasket', array($basket));
-
- return parent::setBasket($basket);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getBasket()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getBasket', array());
-
- return parent::getBasket();
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesOrderElement.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesOrderElement.php
deleted file mode 100644
index 1151c3203b..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesOrderElement.php
+++ /dev/null
@@ -1,323 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\OrderElement' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\OrderElement' . "\0" . 'baseId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\OrderElement' . "\0" . 'recordId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\OrderElement' . "\0" . 'orderMaster', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\OrderElement' . "\0" . 'deny', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\OrderElement' . "\0" . 'order');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\OrderElement' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\OrderElement' . "\0" . 'baseId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\OrderElement' . "\0" . 'recordId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\OrderElement' . "\0" . 'orderMaster', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\OrderElement' . "\0" . 'deny', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\OrderElement' . "\0" . 'order');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (OrderElement $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setOrderMaster(\Alchemy\Phrasea\Model\Entities\User $user = NULL)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setOrderMaster', array($user));
-
- return parent::setOrderMaster($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getOrderMaster()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getOrderMaster', array());
-
- return parent::getOrderMaster();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setDeny($deny)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setDeny', array($deny));
-
- return parent::setDeny($deny);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getDeny()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getDeny', array());
-
- return parent::getDeny();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setOrder(\Alchemy\Phrasea\Model\Entities\Order $order = NULL)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setOrder', array($order));
-
- return parent::setOrder($order);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getOrder()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getOrder', array());
-
- return parent::getOrder();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setBaseId($baseId)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setBaseId', array($baseId));
-
- return parent::setBaseId($baseId);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getBaseId()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getBaseId', array());
-
- return parent::getBaseId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setRecordId($recordId)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRecordId', array($recordId));
-
- return parent::setRecordId($recordId);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getRecordId()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRecordId', array());
-
- return parent::getRecordId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getRecord(\Alchemy\Phrasea\Application $app)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRecord', array($app));
-
- return parent::getRecord($app);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getSbasId(\Alchemy\Phrasea\Application $app)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSbasId', array($app));
-
- return parent::getSbasId($app);
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesPreset.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesPreset.php
deleted file mode 100644
index 1e85e40535..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesPreset.php
+++ /dev/null
@@ -1,301 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Preset' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Preset' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Preset' . "\0" . 'sbasId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Preset' . "\0" . 'title', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Preset' . "\0" . 'data', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Preset' . "\0" . 'created');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Preset' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Preset' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Preset' . "\0" . 'sbasId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Preset' . "\0" . 'title', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Preset' . "\0" . 'data', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Preset' . "\0" . 'created');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (Preset $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUser()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', array());
-
- return parent::getUser();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUser(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', array($user));
-
- return parent::setUser($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getSbasId()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSbasId', array());
-
- return parent::getSbasId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setSbasId($sbasId)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSbasId', array($sbasId));
-
- return parent::setSbasId($sbasId);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getTitle()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getTitle', array());
-
- return parent::getTitle();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setTitle($title)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setTitle', array($title));
-
- return parent::setTitle($title);
- }
-
- /**
- * {@inheritDoc}
- */
- public function setData(array $data)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setData', array($data));
-
- return parent::setData($data);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getData()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getData', array());
-
- return parent::getData();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', array());
-
- return parent::getCreated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreated(\DateTime $created)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', array($created));
-
- return parent::setCreated($created);
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesRegistration.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesRegistration.php
deleted file mode 100644
index 1e4c88e9a9..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesRegistration.php
+++ /dev/null
@@ -1,345 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'baseId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'pending', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'rejected', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'updated');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'baseId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'pending', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'rejected', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Registration' . "\0" . 'updated');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (Registration $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setPending($pending)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setPending', array($pending));
-
- return parent::setPending($pending);
- }
-
- /**
- * {@inheritDoc}
- */
- public function isPending()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isPending', array());
-
- return parent::isPending();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setRejected($rejected)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRejected', array($rejected));
-
- return parent::setRejected($rejected);
- }
-
- /**
- * {@inheritDoc}
- */
- public function isRejected()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isRejected', array());
-
- return parent::isRejected();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUser(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', array($user));
-
- return parent::setUser($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUser()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', array());
-
- return parent::getUser();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCollection(\Alchemy\Phrasea\Application $app)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCollection', array($app));
-
- return parent::getCollection($app);
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCollection(\collection $collection)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCollection', array($collection));
-
- return parent::setCollection($collection);
- }
-
- /**
- * {@inheritDoc}
- */
- public function setBaseId($baseId)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setBaseId', array($baseId));
-
- return parent::setBaseId($baseId);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getBaseId()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getBaseId', array());
-
- return parent::getBaseId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', array());
-
- return parent::getCreated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUpdated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', array());
-
- return parent::getUpdated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreated(\DateTime $created)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', array($created));
-
- return parent::setCreated($created);
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUpdated(\DateTime $updated)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', array($updated));
-
- return parent::setUpdated($updated);
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesSession.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesSession.php
deleted file mode 100644
index 78f1c1c231..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesSession.php
+++ /dev/null
@@ -1,510 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'user_agent', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'ip_address', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'platform', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'browser_name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'browser_version', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'screen_width', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'screen_height', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'token', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'nonce', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'modules');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'user_agent', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'ip_address', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'platform', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'browser_name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'browser_version', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'screen_width', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'screen_height', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'token', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'nonce', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Session' . "\0" . 'modules');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (Session $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUser(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', array($user));
-
- return parent::setUser($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUser()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', array());
-
- return parent::getUser();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUserAgent($userAgent)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUserAgent', array($userAgent));
-
- return parent::setUserAgent($userAgent);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUserAgent()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUserAgent', array());
-
- return parent::getUserAgent();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setIpAddress($ipAddress)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setIpAddress', array($ipAddress));
-
- return parent::setIpAddress($ipAddress);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getIpAddress()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getIpAddress', array());
-
- return parent::getIpAddress();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setPlatform($platform)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setPlatform', array($platform));
-
- return parent::setPlatform($platform);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getPlatform()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPlatform', array());
-
- return parent::getPlatform();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setBrowserName($browserName)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setBrowserName', array($browserName));
-
- return parent::setBrowserName($browserName);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getBrowserName()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getBrowserName', array());
-
- return parent::getBrowserName();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setBrowserVersion($browserVersion)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setBrowserVersion', array($browserVersion));
-
- return parent::setBrowserVersion($browserVersion);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getBrowserVersion()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getBrowserVersion', array());
-
- return parent::getBrowserVersion();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setScreenWidth($screenWidth)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setScreenWidth', array($screenWidth));
-
- return parent::setScreenWidth($screenWidth);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getScreenWidth()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getScreenWidth', array());
-
- return parent::getScreenWidth();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setScreenHeight($screenHeight)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setScreenHeight', array($screenHeight));
-
- return parent::setScreenHeight($screenHeight);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getScreenHeight()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getScreenHeight', array());
-
- return parent::getScreenHeight();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setToken($token)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setToken', array($token));
-
- return parent::setToken($token);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getToken()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getToken', array());
-
- return parent::getToken();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setNonce($nonce)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setNonce', array($nonce));
-
- return parent::setNonce($nonce);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getNonce()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getNonce', array());
-
- return parent::getNonce();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreated(\DateTime $created)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', array($created));
-
- return parent::setCreated($created);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', array());
-
- return parent::getCreated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUpdated(\DateTime $updated)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', array($updated));
-
- return parent::setUpdated($updated);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUpdated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', array());
-
- return parent::getUpdated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function addModule(\Alchemy\Phrasea\Model\Entities\SessionModule $modules)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'addModule', array($modules));
-
- return parent::addModule($modules);
- }
-
- /**
- * {@inheritDoc}
- */
- public function removeModule(\Alchemy\Phrasea\Model\Entities\SessionModule $modules)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeModule', array($modules));
-
- return parent::removeModule($modules);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getModules()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getModules', array());
-
- return parent::getModules();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getModuleById($moduleId)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getModuleById', array($moduleId));
-
- return parent::getModuleById($moduleId);
- }
-
- /**
- * {@inheritDoc}
- */
- public function hasModuleId($moduleId)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'hasModuleId', array($moduleId));
-
- return parent::hasModuleId($moduleId);
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesSessionModule.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesSessionModule.php
deleted file mode 100644
index 195e7c41da..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesSessionModule.php
+++ /dev/null
@@ -1,279 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\SessionModule' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\SessionModule' . "\0" . 'module_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\SessionModule' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\SessionModule' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\SessionModule' . "\0" . 'session');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\SessionModule' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\SessionModule' . "\0" . 'module_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\SessionModule' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\SessionModule' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\SessionModule' . "\0" . 'session');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (SessionModule $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setModuleId($moduleId)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setModuleId', array($moduleId));
-
- return parent::setModuleId($moduleId);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getModuleId()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getModuleId', array());
-
- return parent::getModuleId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreated($created)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', array($created));
-
- return parent::setCreated($created);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', array());
-
- return parent::getCreated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUpdated(\DateTime $updated)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', array($updated));
-
- return parent::setUpdated($updated);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUpdated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', array());
-
- return parent::getUpdated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setSession(\Alchemy\Phrasea\Model\Entities\Session $session = NULL)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSession', array($session));
-
- return parent::setSession($session);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getSession()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSession', array());
-
- return parent::getSession();
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesStoryWZ.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesStoryWZ.php
deleted file mode 100644
index eec5e63468..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesStoryWZ.php
+++ /dev/null
@@ -1,301 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\StoryWZ' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\StoryWZ' . "\0" . 'sbas_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\StoryWZ' . "\0" . 'record_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\StoryWZ' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\StoryWZ' . "\0" . 'created');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\StoryWZ' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\StoryWZ' . "\0" . 'sbas_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\StoryWZ' . "\0" . 'record_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\StoryWZ' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\StoryWZ' . "\0" . 'created');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (StoryWZ $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setSbasId($sbasId)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSbasId', array($sbasId));
-
- return parent::setSbasId($sbasId);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getSbasId()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSbasId', array());
-
- return parent::getSbasId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setRecordId($recordId)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRecordId', array($recordId));
-
- return parent::setRecordId($recordId);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getRecordId()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRecordId', array());
-
- return parent::getRecordId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getRecord(\Alchemy\Phrasea\Application $app)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRecord', array($app));
-
- return parent::getRecord($app);
- }
-
- /**
- * {@inheritDoc}
- */
- public function setRecord(\record_adapter $record)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRecord', array($record));
-
- return parent::setRecord($record);
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUser(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', array($user));
-
- return parent::setUser($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUser()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', array());
-
- return parent::getUser();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreated(\DateTime $created)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', array($created));
-
- return parent::setCreated($created);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', array());
-
- return parent::getCreated();
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesTask.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesTask.php
deleted file mode 100644
index 44d4aff1ac..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesTask.php
+++ /dev/null
@@ -1,433 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'jobId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'settings', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'completed', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'status', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'crashed', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'singleRun', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'lastExecution', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'period');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'jobId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'settings', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'completed', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'status', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'crashed', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'singleRun', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'lastExecution', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\Task' . "\0" . 'period');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (Task $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setName($name)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', array($name));
-
- return parent::setName($name);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getName()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', array());
-
- return parent::getName();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setJobId($jobId)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setJobId', array($jobId));
-
- return parent::setJobId($jobId);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getJobId()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getJobId', array());
-
- return parent::getJobId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setSettings($settings)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSettings', array($settings));
-
- return parent::setSettings($settings);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getSettings()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSettings', array());
-
- return parent::getSettings();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCompleted($completed)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCompleted', array($completed));
-
- return parent::setCompleted($completed);
- }
-
- /**
- * {@inheritDoc}
- */
- public function isCompleted()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isCompleted', array());
-
- return parent::isCompleted();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setStatus($status)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setStatus', array($status));
-
- return parent::setStatus($status);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getStatus()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getStatus', array());
-
- return parent::getStatus();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCrashed($crashed)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCrashed', array($crashed));
-
- return parent::setCrashed($crashed);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCrashed()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCrashed', array());
-
- return parent::getCrashed();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setSingleRun($singleRun)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSingleRun', array($singleRun));
-
- return parent::setSingleRun($singleRun);
- }
-
- /**
- * {@inheritDoc}
- */
- public function isSingleRun()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isSingleRun', array());
-
- return parent::isSingleRun();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreated($created)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', array($created));
-
- return parent::setCreated($created);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', array());
-
- return parent::getCreated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUpdated($updated)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', array($updated));
-
- return parent::setUpdated($updated);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUpdated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', array());
-
- return parent::getUpdated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setExecuted($lastExecution)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setExecuted', array($lastExecution));
-
- return parent::setExecuted($lastExecution);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getLastExecution()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getLastExecution', array());
-
- return parent::getLastExecution();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getPeriod()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPeriod', array());
-
- return parent::getPeriod();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setPeriod($period)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setPeriod', array($period));
-
- return parent::setPeriod($period);
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesUser.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesUser.php
deleted file mode 100644
index 245a37fcf6..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesUser.php
+++ /dev/null
@@ -1,1082 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'login', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'email', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'password', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'nonce', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'saltedPassword', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'firstName', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'lastName', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'gender', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'address', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'city', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'country', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'zipCode', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'geonameId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'locale', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'timezone', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'job', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'activity', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'company', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'phone', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'fax', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'admin', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'guest', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'mailNotificationsActivated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'requestNotificationsActivated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'ldapCreated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'lastAppliedTemplate', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'pushList', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'canChangeProfil', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'canChangeFtpProfil', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'lastConnection', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'mailLocked', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'deleted', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'templateOwner', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'ftpCredential', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'queries', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'settings', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'notificationSettings');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'login', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'email', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'password', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'nonce', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'saltedPassword', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'firstName', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'lastName', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'gender', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'address', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'city', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'country', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'zipCode', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'geonameId', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'locale', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'timezone', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'job', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'activity', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'company', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'phone', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'fax', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'admin', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'guest', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'mailNotificationsActivated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'requestNotificationsActivated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'ldapCreated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'lastAppliedTemplate', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'pushList', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'canChangeProfil', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'canChangeFtpProfil', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'lastConnection', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'mailLocked', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'deleted', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'templateOwner', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'ftpCredential', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'queries', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'settings', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\User' . "\0" . 'notificationSettings');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (User $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getLogin()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getLogin', array());
-
- return parent::getLogin();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setLogin($login)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLogin', array($login));
-
- return parent::setLogin($login);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getEmail()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getEmail', array());
-
- return parent::getEmail();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setEmail($email)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setEmail', array($email));
-
- return parent::setEmail($email);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getPassword()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPassword', array());
-
- return parent::getPassword();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setPassword($password)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setPassword', array($password));
-
- return parent::setPassword($password);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getNonce()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getNonce', array());
-
- return parent::getNonce();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setNonce($nonce)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setNonce', array($nonce));
-
- return parent::setNonce($nonce);
- }
-
- /**
- * {@inheritDoc}
- */
- public function isSaltedPassword()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isSaltedPassword', array());
-
- return parent::isSaltedPassword();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setSaltedPassword($saltedPassword)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSaltedPassword', array($saltedPassword));
-
- return parent::setSaltedPassword($saltedPassword);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getFirstName()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getFirstName', array());
-
- return parent::getFirstName();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setFirstName($firstName)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setFirstName', array($firstName));
-
- return parent::setFirstName($firstName);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getLastName()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getLastName', array());
-
- return parent::getLastName();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setLastName($lastName)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLastName', array($lastName));
-
- return parent::setLastName($lastName);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getGender()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getGender', array());
-
- return parent::getGender();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setGender($gender)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setGender', array($gender));
-
- return parent::setGender($gender);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getAddress()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getAddress', array());
-
- return parent::getAddress();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setAddress($address)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setAddress', array($address));
-
- return parent::setAddress($address);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCity()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCity', array());
-
- return parent::getCity();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCity($city)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCity', array($city));
-
- return parent::setCity($city);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCountry()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCountry', array());
-
- return parent::getCountry();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCountry($country)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCountry', array($country));
-
- return parent::setCountry($country);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getZipCode()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getZipCode', array());
-
- return parent::getZipCode();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setZipCode($zipCode)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setZipCode', array($zipCode));
-
- return parent::setZipCode($zipCode);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getGeonameId()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getGeonameId', array());
-
- return parent::getGeonameId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setGeonameId($geonameId)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setGeonameId', array($geonameId));
-
- return parent::setGeonameId($geonameId);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getLocale()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getLocale', array());
-
- return parent::getLocale();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setLocale($locale)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLocale', array($locale));
-
- return parent::setLocale($locale);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getTimezone()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getTimezone', array());
-
- return parent::getTimezone();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setTimezone($timezone)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setTimezone', array($timezone));
-
- return parent::setTimezone($timezone);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getJob()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getJob', array());
-
- return parent::getJob();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setJob($job)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setJob', array($job));
-
- return parent::setJob($job);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getActivity()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getActivity', array());
-
- return parent::getActivity();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setActivity($activity)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setActivity', array($activity));
-
- return parent::setActivity($activity);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCompany()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCompany', array());
-
- return parent::getCompany();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCompany($company)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCompany', array($company));
-
- return parent::setCompany($company);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getPhone()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPhone', array());
-
- return parent::getPhone();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setPhone($phone)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setPhone', array($phone));
-
- return parent::setPhone($phone);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getFax()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getFax', array());
-
- return parent::getFax();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setFax($fax)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setFax', array($fax));
-
- return parent::setFax($fax);
- }
-
- /**
- * {@inheritDoc}
- */
- public function isAdmin()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isAdmin', array());
-
- return parent::isAdmin();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setAdmin($admin)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setAdmin', array($admin));
-
- return parent::setAdmin($admin);
- }
-
- /**
- * {@inheritDoc}
- */
- public function isGuest()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isGuest', array());
-
- return parent::isGuest();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setGuest($guest)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setGuest', array($guest));
-
- return parent::setGuest($guest);
- }
-
- /**
- * {@inheritDoc}
- */
- public function hasMailNotificationsActivated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'hasMailNotificationsActivated', array());
-
- return parent::hasMailNotificationsActivated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setMailNotificationsActivated($mailNotifications)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setMailNotificationsActivated', array($mailNotifications));
-
- return parent::setMailNotificationsActivated($mailNotifications);
- }
-
- /**
- * {@inheritDoc}
- */
- public function hasRequestNotificationsActivated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'hasRequestNotificationsActivated', array());
-
- return parent::hasRequestNotificationsActivated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setRequestNotificationsActivated($requestNotifications)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRequestNotificationsActivated', array($requestNotifications));
-
- return parent::setRequestNotificationsActivated($requestNotifications);
- }
-
- /**
- * {@inheritDoc}
- */
- public function hasLdapCreated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'hasLdapCreated', array());
-
- return parent::hasLdapCreated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setLdapCreated($ldapCreated)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLdapCreated', array($ldapCreated));
-
- return parent::setLdapCreated($ldapCreated);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getTemplateOwner()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getTemplateOwner', array());
-
- return parent::getTemplateOwner();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setTemplateOwner(\Alchemy\Phrasea\Model\Entities\User $owner)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setTemplateOwner', array($owner));
-
- return parent::setTemplateOwner($owner);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getLastAppliedTemplate()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getLastAppliedTemplate', array());
-
- return parent::getLastAppliedTemplate();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setLastAppliedTemplate(\Alchemy\Phrasea\Model\Entities\User $lastAppliedTemplate)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLastAppliedTemplate', array($lastAppliedTemplate));
-
- return parent::setLastAppliedTemplate($lastAppliedTemplate);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getPushList()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getPushList', array());
-
- return parent::getPushList();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setPushList($pushList)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setPushList', array($pushList));
-
- return parent::setPushList($pushList);
- }
-
- /**
- * {@inheritDoc}
- */
- public function canChangeProfil()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'canChangeProfil', array());
-
- return parent::canChangeProfil();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCanChangeProfil($canChangeProfil)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCanChangeProfil', array($canChangeProfil));
-
- return parent::setCanChangeProfil($canChangeProfil);
- }
-
- /**
- * {@inheritDoc}
- */
- public function canChangeFtpProfil()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'canChangeFtpProfil', array());
-
- return parent::canChangeFtpProfil();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCanChangeFtpProfil($canChangeFtpProfil)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCanChangeFtpProfil', array($canChangeFtpProfil));
-
- return parent::setCanChangeFtpProfil($canChangeFtpProfil);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getLastConnection()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getLastConnection', array());
-
- return parent::getLastConnection();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setLastConnection(\DateTime $lastConnection)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setLastConnection', array($lastConnection));
-
- return parent::setLastConnection($lastConnection);
- }
-
- /**
- * {@inheritDoc}
- */
- public function isMailLocked()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isMailLocked', array());
-
- return parent::isMailLocked();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setMailLocked($mailLocked)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setMailLocked', array($mailLocked));
-
- return parent::setMailLocked($mailLocked);
- }
-
- /**
- * {@inheritDoc}
- */
- public function isDeleted()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isDeleted', array());
-
- return parent::isDeleted();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setDeleted($deleted)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setDeleted', array($deleted));
-
- return parent::setDeleted($deleted);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', array());
-
- return parent::getCreated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUpdated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', array());
-
- return parent::getUpdated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreated(\DateTime $created)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', array($created));
-
- return parent::setCreated($created);
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUpdated(\DateTime $updated)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', array($updated));
-
- return parent::setUpdated($updated);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getFtpCredential()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getFtpCredential', array());
-
- return parent::getFtpCredential();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setFtpCredential(\Alchemy\Phrasea\Model\Entities\FtpCredential $ftpCredential = NULL)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setFtpCredential', array($ftpCredential));
-
- return parent::setFtpCredential($ftpCredential);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getQueries()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getQueries', array());
-
- return parent::getQueries();
- }
-
- /**
- * {@inheritDoc}
- */
- public function addQuery(\Alchemy\Phrasea\Model\Entities\UserQuery $query)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'addQuery', array($query));
-
- return parent::addQuery($query);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getSettings()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSettings', array());
-
- return parent::getSettings();
- }
-
- /**
- * {@inheritDoc}
- */
- public function addSetting(\Alchemy\Phrasea\Model\Entities\UserSetting $setting)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'addSetting', array($setting));
-
- return parent::addSetting($setting);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getNotificationSettings()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getNotificationSettings', array());
-
- return parent::getNotificationSettings();
- }
-
- /**
- * {@inheritDoc}
- */
- public function addNotificationSettings(\Alchemy\Phrasea\Model\Entities\UserNotificationSetting $notificationSetting)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'addNotificationSettings', array($notificationSetting));
-
- return parent::addNotificationSettings($notificationSetting);
- }
-
- /**
- * {@inheritDoc}
- */
- public function isTemplate()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isTemplate', array());
-
- return parent::isTemplate();
- }
-
- /**
- * {@inheritDoc}
- */
- public function isSpecial()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isSpecial', array());
-
- return parent::isSpecial();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getDisplayName()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getDisplayName', array());
-
- return parent::getDisplayName();
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesUserNotificationSetting.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesUserNotificationSetting.php
deleted file mode 100644
index 3ee60b8771..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesUserNotificationSetting.php
+++ /dev/null
@@ -1,301 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserNotificationSetting' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserNotificationSetting' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserNotificationSetting' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserNotificationSetting' . "\0" . 'value', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserNotificationSetting' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserNotificationSetting' . "\0" . 'updated');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserNotificationSetting' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserNotificationSetting' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserNotificationSetting' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserNotificationSetting' . "\0" . 'value', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserNotificationSetting' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserNotificationSetting' . "\0" . 'updated');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (UserNotificationSetting $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUser()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', array());
-
- return parent::getUser();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUser(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', array($user));
-
- return parent::setUser($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getName()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', array());
-
- return parent::getName();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setName($name)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', array($name));
-
- return parent::setName($name);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getValue()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getValue', array());
-
- return parent::getValue();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setValue($value)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setValue', array($value));
-
- return parent::setValue($value);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', array());
-
- return parent::getCreated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreated(\DateTime $created)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', array($created));
-
- return parent::setCreated($created);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUpdated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', array());
-
- return parent::getUpdated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUpdated($updated)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', array($updated));
-
- return parent::setUpdated($updated);
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesUserQuery.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesUserQuery.php
deleted file mode 100644
index 6cf86564c9..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesUserQuery.php
+++ /dev/null
@@ -1,257 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserQuery' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserQuery' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserQuery' . "\0" . 'query', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserQuery' . "\0" . 'created');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserQuery' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserQuery' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserQuery' . "\0" . 'query', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserQuery' . "\0" . 'created');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (UserQuery $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUser()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', array());
-
- return parent::getUser();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUser(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', array($user));
-
- return parent::setUser($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getQuery()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getQuery', array());
-
- return parent::getQuery();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setQuery($query)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setQuery', array($query));
-
- return parent::setQuery($query);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', array());
-
- return parent::getCreated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreated(\DateTime $created)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', array($created));
-
- return parent::setCreated($created);
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesUserSetting.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesUserSetting.php
deleted file mode 100644
index 3bf3688b84..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesUserSetting.php
+++ /dev/null
@@ -1,301 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserSetting' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserSetting' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserSetting' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserSetting' . "\0" . 'value', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserSetting' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserSetting' . "\0" . 'updated');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserSetting' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserSetting' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserSetting' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserSetting' . "\0" . 'value', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserSetting' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UserSetting' . "\0" . 'updated');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (UserSetting $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUser()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', array());
-
- return parent::getUser();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUser(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', array($user));
-
- return parent::setUser($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getName()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', array());
-
- return parent::getName();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setName($name)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', array($name));
-
- return parent::setName($name);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getValue()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getValue', array());
-
- return parent::getValue();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setValue($value)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setValue', array($value));
-
- return parent::setValue($value);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', array());
-
- return parent::getCreated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreated(\DateTime $created)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', array($created));
-
- return parent::setCreated($created);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUpdated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', array());
-
- return parent::getUpdated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUpdated(\DateTime $updated)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', array($updated));
-
- return parent::setUpdated($updated);
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesUsrAuthProvider.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesUsrAuthProvider.php
deleted file mode 100644
index 98431f8d0a..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesUsrAuthProvider.php
+++ /dev/null
@@ -1,301 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrAuthProvider' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrAuthProvider' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrAuthProvider' . "\0" . 'provider', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrAuthProvider' . "\0" . 'distant_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrAuthProvider' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrAuthProvider' . "\0" . 'updated');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrAuthProvider' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrAuthProvider' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrAuthProvider' . "\0" . 'provider', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrAuthProvider' . "\0" . 'distant_id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrAuthProvider' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrAuthProvider' . "\0" . 'updated');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (UsrAuthProvider $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUser(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', array($user));
-
- return parent::setUser($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUser()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', array());
-
- return parent::getUser();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setProvider($provider)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setProvider', array($provider));
-
- return parent::setProvider($provider);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getProvider()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getProvider', array());
-
- return parent::getProvider();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setDistantId($distantId)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setDistantId', array($distantId));
-
- return parent::setDistantId($distantId);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getDistantId()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getDistantId', array());
-
- return parent::getDistantId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUpdated(\DateTime $updated)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', array($updated));
-
- return parent::setUpdated($updated);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUpdated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', array());
-
- return parent::getUpdated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreated(\DateTime $created)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', array($created));
-
- return parent::setCreated($created);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', array());
-
- return parent::getCreated();
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesUsrList.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesUsrList.php
deleted file mode 100644
index e65c2d1aab..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesUsrList.php
+++ /dev/null
@@ -1,356 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrList' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrList' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrList' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrList' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrList' . "\0" . 'owners', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrList' . "\0" . 'entries');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrList' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrList' . "\0" . 'name', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrList' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrList' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrList' . "\0" . 'owners', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrList' . "\0" . 'entries');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (UsrList $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setName($name)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', array($name));
-
- return parent::setName($name);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getName()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', array());
-
- return parent::getName();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreated(\DateTime $created)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', array($created));
-
- return parent::setCreated($created);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', array());
-
- return parent::getCreated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUpdated(\DateTime $updated)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', array($updated));
-
- return parent::setUpdated($updated);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUpdated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', array());
-
- return parent::getUpdated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function addOwner(\Alchemy\Phrasea\Model\Entities\UsrListOwner $owners)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'addOwner', array($owners));
-
- return parent::addOwner($owners);
- }
-
- /**
- * {@inheritDoc}
- */
- public function removeOwner(\Alchemy\Phrasea\Model\Entities\UsrListOwner $owners)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeOwner', array($owners));
-
- return parent::removeOwner($owners);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getOwners()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getOwners', array());
-
- return parent::getOwners();
- }
-
- /**
- * {@inheritDoc}
- */
- public function addEntrie(\Alchemy\Phrasea\Model\Entities\UsrListEntry $entries)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'addEntrie', array($entries));
-
- return parent::addEntrie($entries);
- }
-
- /**
- * {@inheritDoc}
- */
- public function removeEntrie(\Alchemy\Phrasea\Model\Entities\UsrListEntry $entries)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeEntrie', array($entries));
-
- return parent::removeEntrie($entries);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getEntries()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getEntries', array());
-
- return parent::getEntries();
- }
-
- /**
- * {@inheritDoc}
- */
- public function hasAccess(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'hasAccess', array($user));
-
- return parent::hasAccess($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getOwner(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getOwner', array($user));
-
- return parent::getOwner($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function has(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'has', array($user));
-
- return parent::has($user);
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesUsrListEntry.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesUsrListEntry.php
deleted file mode 100644
index 5ee900ed1c..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesUsrListEntry.php
+++ /dev/null
@@ -1,279 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListEntry' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListEntry' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListEntry' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListEntry' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListEntry' . "\0" . 'list');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListEntry' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListEntry' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListEntry' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListEntry' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListEntry' . "\0" . 'list');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (UsrListEntry $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUser(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', array($user));
-
- return parent::setUser($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUser()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', array());
-
- return parent::getUser();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreated(\DateTime $created)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', array($created));
-
- return parent::setCreated($created);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', array());
-
- return parent::getCreated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUpdated(\DateTime $updated)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', array($updated));
-
- return parent::setUpdated($updated);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUpdated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', array());
-
- return parent::getUpdated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setList(\Alchemy\Phrasea\Model\Entities\UsrList $list = NULL)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setList', array($list));
-
- return parent::setList($list);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getList()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getList', array());
-
- return parent::getList();
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesUsrListOwner.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesUsrListOwner.php
deleted file mode 100644
index ffd2458706..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesUsrListOwner.php
+++ /dev/null
@@ -1,301 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListOwner' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListOwner' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListOwner' . "\0" . 'role', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListOwner' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListOwner' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListOwner' . "\0" . 'list');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListOwner' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListOwner' . "\0" . 'user', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListOwner' . "\0" . 'role', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListOwner' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListOwner' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\UsrListOwner' . "\0" . 'list');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (UsrListOwner $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUser(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', array($user));
-
- return parent::setUser($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUser()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', array());
-
- return parent::getUser();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setRole($role)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setRole', array($role));
-
- return parent::setRole($role);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getRole()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getRole', array());
-
- return parent::getRole();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreated(\DateTime $created)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', array($created));
-
- return parent::setCreated($created);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', array());
-
- return parent::getCreated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUpdated(\DateTime $updated)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', array($updated));
-
- return parent::setUpdated($updated);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUpdated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', array());
-
- return parent::getUpdated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setList(\Alchemy\Phrasea\Model\Entities\UsrList $list = NULL)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setList', array($list));
-
- return parent::setList($list);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getList()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getList', array());
-
- return parent::getList();
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesValidationData.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesValidationData.php
deleted file mode 100644
index 7709cecc84..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesValidationData.php
+++ /dev/null
@@ -1,301 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationData' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationData' . "\0" . 'agreement', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationData' . "\0" . 'note', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationData' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationData' . "\0" . 'participant', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationData' . "\0" . 'basket_element');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationData' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationData' . "\0" . 'agreement', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationData' . "\0" . 'note', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationData' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationData' . "\0" . 'participant', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationData' . "\0" . 'basket_element');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (ValidationData $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setAgreement($agreement)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setAgreement', array($agreement));
-
- return parent::setAgreement($agreement);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getAgreement()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getAgreement', array());
-
- return parent::getAgreement();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setNote($note)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setNote', array($note));
-
- return parent::setNote($note);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getNote()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getNote', array());
-
- return parent::getNote();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUpdated(\DateTime $updated)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', array($updated));
-
- return parent::setUpdated($updated);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUpdated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', array());
-
- return parent::getUpdated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setParticipant(\Alchemy\Phrasea\Model\Entities\ValidationParticipant $participant = NULL)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setParticipant', array($participant));
-
- return parent::setParticipant($participant);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getParticipant()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getParticipant', array());
-
- return parent::getParticipant();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setBasketElement(\Alchemy\Phrasea\Model\Entities\BasketElement $basketElement = NULL)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setBasketElement', array($basketElement));
-
- return parent::setBasketElement($basketElement);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getBasketElement()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getBasketElement', array());
-
- return parent::getBasketElement();
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesValidationParticipant.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesValidationParticipant.php
deleted file mode 100644
index d22e522d75..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesValidationParticipant.php
+++ /dev/null
@@ -1,389 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'is_aware', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'is_confirmed', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'can_agree', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'can_see_others', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'reminded', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'datas', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'session', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'user');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'is_aware', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'is_confirmed', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'can_agree', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'can_see_others', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'reminded', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'datas', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'session', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationParticipant' . "\0" . 'user');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (ValidationParticipant $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUser(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUser', array($user));
-
- return parent::setUser($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUser()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUser', array());
-
- return parent::getUser();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setIsAware($isAware)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setIsAware', array($isAware));
-
- return parent::setIsAware($isAware);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getIsAware()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getIsAware', array());
-
- return parent::getIsAware();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setIsConfirmed($isConfirmed)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setIsConfirmed', array($isConfirmed));
-
- return parent::setIsConfirmed($isConfirmed);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getIsConfirmed()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getIsConfirmed', array());
-
- return parent::getIsConfirmed();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCanAgree($canAgree)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCanAgree', array($canAgree));
-
- return parent::setCanAgree($canAgree);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCanAgree()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCanAgree', array());
-
- return parent::getCanAgree();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCanSeeOthers($canSeeOthers)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCanSeeOthers', array($canSeeOthers));
-
- return parent::setCanSeeOthers($canSeeOthers);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCanSeeOthers()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCanSeeOthers', array());
-
- return parent::getCanSeeOthers();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setReminded($reminded)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setReminded', array($reminded));
-
- return parent::setReminded($reminded);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getReminded()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getReminded', array());
-
- return parent::getReminded();
- }
-
- /**
- * {@inheritDoc}
- */
- public function addData(\Alchemy\Phrasea\Model\Entities\ValidationData $datas)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'addData', array($datas));
-
- return parent::addData($datas);
- }
-
- /**
- * {@inheritDoc}
- */
- public function removeData(\Alchemy\Phrasea\Model\Entities\ValidationData $datas)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeData', array($datas));
-
- return parent::removeData($datas);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getDatas()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getDatas', array());
-
- return parent::getDatas();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setSession(\Alchemy\Phrasea\Model\Entities\ValidationSession $session = NULL)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setSession', array($session));
-
- return parent::setSession($session);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getSession()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getSession', array());
-
- return parent::getSession();
- }
-
- /**
- * {@inheritDoc}
- */
- public function isReleasable()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isReleasable', array());
-
- return parent::isReleasable();
- }
-
-}
diff --git a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesValidationSession.php b/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesValidationSession.php
deleted file mode 100644
index 2efb811e07..0000000000
--- a/tmp/doctrine-proxies/__CG__AlchemyPhraseaModelEntitiesValidationSession.php
+++ /dev/null
@@ -1,378 +0,0 @@
-__initializer__ = $initializer;
- $this->__cloner__ = $cloner;
- }
-
-
-
-
-
-
-
- /**
- *
- * @return array
- */
- public function __sleep()
- {
- if ($this->__isInitialized__) {
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'initiator', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'expires', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'basket', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'participants');
- }
-
- return array('__isInitialized__', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'id', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'initiator', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'created', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'updated', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'expires', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'basket', '' . "\0" . 'Alchemy\\Phrasea\\Model\\Entities\\ValidationSession' . "\0" . 'participants');
- }
-
- /**
- *
- */
- public function __wakeup()
- {
- if ( ! $this->__isInitialized__) {
- $this->__initializer__ = function (ValidationSession $proxy) {
- $proxy->__setInitializer(null);
- $proxy->__setCloner(null);
-
- $existingProperties = get_object_vars($proxy);
-
- foreach ($proxy->__getLazyProperties() as $property => $defaultValue) {
- if ( ! array_key_exists($property, $existingProperties)) {
- $proxy->$property = $defaultValue;
- }
- }
- };
-
- }
- }
-
- /**
- *
- */
- public function __clone()
- {
- $this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', array());
- }
-
- /**
- * Forces initialization of the proxy
- */
- public function __load()
- {
- $this->__initializer__ && $this->__initializer__->__invoke($this, '__load', array());
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __isInitialized()
- {
- return $this->__isInitialized__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitialized($initialized)
- {
- $this->__isInitialized__ = $initialized;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setInitializer(\Closure $initializer = null)
- {
- $this->__initializer__ = $initializer;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __getInitializer()
- {
- return $this->__initializer__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- */
- public function __setCloner(\Closure $cloner = null)
- {
- $this->__cloner__ = $cloner;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific cloning logic
- */
- public function __getCloner()
- {
- return $this->__cloner__;
- }
-
- /**
- * {@inheritDoc}
- * @internal generated method: use only when explicitly handling proxy specific loading logic
- * @static
- */
- public function __getLazyProperties()
- {
- return self::$lazyPropertiesDefaults;
- }
-
-
- /**
- * {@inheritDoc}
- */
- public function getId()
- {
- if ($this->__isInitialized__ === false) {
- return (int) parent::getId();
- }
-
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
-
- return parent::getId();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setInitiator(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setInitiator', array($user));
-
- return parent::setInitiator($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getInitiator()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getInitiator', array());
-
- return parent::getInitiator();
- }
-
- /**
- * {@inheritDoc}
- */
- public function isInitiator(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isInitiator', array($user));
-
- return parent::isInitiator($user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function setCreated(\DateTime $created)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreated', array($created));
-
- return parent::setCreated($created);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getCreated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreated', array());
-
- return parent::getCreated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setUpdated(\DateTime $updated)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdated', array($updated));
-
- return parent::setUpdated($updated);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getUpdated()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdated', array());
-
- return parent::getUpdated();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setExpires($expires)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setExpires', array($expires));
-
- return parent::setExpires($expires);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getExpires()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getExpires', array());
-
- return parent::getExpires();
- }
-
- /**
- * {@inheritDoc}
- */
- public function setBasket(\Alchemy\Phrasea\Model\Entities\Basket $basket = NULL)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'setBasket', array($basket));
-
- return parent::setBasket($basket);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getBasket()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getBasket', array());
-
- return parent::getBasket();
- }
-
- /**
- * {@inheritDoc}
- */
- public function addParticipant(\Alchemy\Phrasea\Model\Entities\ValidationParticipant $participants)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'addParticipant', array($participants));
-
- return parent::addParticipant($participants);
- }
-
- /**
- * {@inheritDoc}
- */
- public function removeParticipant(\Alchemy\Phrasea\Model\Entities\ValidationParticipant $participants)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'removeParticipant', array($participants));
-
- return parent::removeParticipant($participants);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getParticipants()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getParticipants', array());
-
- return parent::getParticipants();
- }
-
- /**
- * {@inheritDoc}
- */
- public function isFinished()
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'isFinished', array());
-
- return parent::isFinished();
- }
-
- /**
- * {@inheritDoc}
- */
- public function getValidationString(\Alchemy\Phrasea\Application $app, \Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getValidationString', array($app, $user));
-
- return parent::getValidationString($app, $user);
- }
-
- /**
- * {@inheritDoc}
- */
- public function getParticipant(\Alchemy\Phrasea\Model\Entities\User $user)
- {
-
- $this->__initializer__ && $this->__initializer__->__invoke($this, 'getParticipant', array($user));
-
- return parent::getParticipant($user);
- }
-
-}
diff --git a/tmp/doctrine/.gitignore b/tmp/doctrine/.gitignore
deleted file mode 100644
index d6b7ef32c8..0000000000
--- a/tmp/doctrine/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-*
-!.gitignore
diff --git a/tmp/download/.gitignore b/tmp/download/.gitignore
deleted file mode 100644
index d6b7ef32c8..0000000000
--- a/tmp/download/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-*
-!.gitignore
diff --git a/tmp/download/.gitkeep b/tmp/download/.gitkeep
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/tmp/lazaret/.gitignore b/tmp/lazaret/.gitignore
deleted file mode 100644
index d6b7ef32c8..0000000000
--- a/tmp/lazaret/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-*
-!.gitignore
diff --git a/tmp/lazaret/.gitkeep b/tmp/lazaret/.gitkeep
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/tmp/locks/.gitignore b/tmp/locks/.gitignore
deleted file mode 100644
index d6b7ef32c8..0000000000
--- a/tmp/locks/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-*
-!.gitignore
diff --git a/tmp/locks/.gitkeep b/tmp/locks/.gitkeep
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/tmp/serializer/.gitignore b/tmp/serializer/.gitignore
deleted file mode 100644
index d6b7ef32c8..0000000000
--- a/tmp/serializer/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-*
-!.gitignore
diff --git a/tmp/sessions/.gitkeep b/tmp/sessions/.gitkeep
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/tmp/translations/.gitignore b/tmp/translations/.gitignore
deleted file mode 100644
index d6b7ef32c8..0000000000
--- a/tmp/translations/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-*
-!.gitignore
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/hiera.yaml b/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/hiera.yaml
deleted file mode 100644
index 98358aa6ea..0000000000
--- a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/hiera.yaml
+++ /dev/null
@@ -1,7 +0,0 @@
----
-:backends: yaml
-:yaml:
- :datadir: '/vagrant/vagrant/vms/phraseanet-php54-nginx/puphpet'
-:hierarchy:
- - config
-:logger: console
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/important-notices.txt b/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/important-notices.txt
deleted file mode 100644
index 0dc384f1e0..0000000000
--- a/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/important-notices.txt
+++ /dev/null
@@ -1,57 +0,0 @@
- _
- / )
- .--.; | _...,-"""-,
- .-""-.-""""-. / _`'-._.' /` \
- /' \ \| (/'-._/ ) ;
- .-""""-; ( '--' /-' _ |
- .' | ; e / a , ;
- / \ | __.'`-.__, ; /
- / `._ ; .-' `--.,__.\ /`
- //| \ \,-' /\_.'
- // | `;.___> /,-'.
- /`| / |`\ _..---\ | \
- |/ / _,.-----\ | \ /`| | |\ \
- / .; | | | \ / | | | \ )
- | / | \ / |\..' \ \ | \ \..'
- jgs \../ \.../ \.../ \.../---' \.../
-
-Read me for some important information!
-
-If Puppet did not blow up (you do not see a sea of red above), then your VM
-was generated successfully!
-
-* A unique private key was generated for you! It is located at
- "puphpet/files/dot/ssh/id_rsa". If you are on Windows, a PuTTY-friendly key
- was also generated at same location with a ".ppk" extension.
-* If you want to use your own private key for future provisions, overwrite the
- generated key above with your own. Make sure to follow the naming pattern,
- and include a ".pub" public key.
-* If you wish to add packages, modules, Apache/Nginx vhosts, or anything else,
- open up "puphpet/config.yaml" and make changes within! Some things will
- have random strings like "DIdXRs2OI2LJ" - you must create a random string
- as well! To do so, please apply face to keyboard and roll.
-* If you change "puphpet/config.yaml", simple run "$ vagrant provision" and
- your VM will be updated with the changes you requested!
-
-Did something go wrong? Don't worry! I can (maybe) help! Please go to our
-Github issues page at https://github.com/puphpet/puphpet/issues and search for
-your problem. If you do not find your problem answered, open a new ticket!
-
-----------------------------------------------------------------------------
-PLEASE REMEMBER TO INCLUDE THE CONTENTS OF YOUR "puphpet/config.yaml" FILE.
-----------------------------------------------------------------------------
-
-Make sure to xxx out any potential API keys or passwords that you do not want
-others to see!
-
-Happy programming!
- - Juan Treminio
-
-┈╭━━━━━━━━━━━━┳━━╮┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈
- ┃ ╭╯ ┃ ▋┃╭━┓ ____ _ _ _ _
-╭┫ ┃ ┃ ┃┃╭┛ | _ \ ___ __ _ __| | / \ | |__ _____ _____| |
-┃┃ ╰━━╯ ┃╰╯┃ | |_) / _ \/ _` |/ _` | / _ \ | '_ \ / _ \ \ / / _ \ |
-╯┃ ╰┳━╯ | _ < __/ (_| | (_| | / ___ \| |_) | (_) \ V / __/_|
- ┃ ┃ |_| \_\___|\__,_|\__,_| /_/ \_\_.__/ \___/ \_/ \___(_)
- ┃ ┏━┳━━━━━━━┓ ┏ ┃
-▔┗━┻━┛▔▔▔▔▔▔▔┗━┻━┛▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/self-promotion.txt b/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/self-promotion.txt
deleted file mode 100644
index 8cd11701e7..0000000000
--- a/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/self-promotion.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-
- ____ ____ _ _ ____ _ generated using
- | _ \ _ _| _ \| | | | _ \ ___| |_ ___ ___ _ __ ___
- | |_) | | | | |_) | |_| | |_) / _ \ __| / __/ _ \| '_ ` _ \
- | __/| |_| | __/| _ | __/ __/ |_ | (_| (_) | | | | | |
- |_| \__,_|_| |_| |_|_| \___|\__(_)___\___/|_| |_| |_|
diff --git a/www/include/js/tests/jquery.Edit.js.html b/www/include/js/tests/jquery.Edit.js.html
index 7ed089e551..cf44ea6336 100644
--- a/www/include/js/tests/jquery.Edit.js.html
+++ b/www/include/js/tests/jquery.Edit.js.html
@@ -4,9 +4,9 @@