Files
Phraseanet/lib/Doctrine/Proxies/__CG__EntitiesUsrList.php
2013-06-17 20:11:44 +02:00

166 lines
4.2 KiB
PHP

<?php
namespace Proxies\__CG__\Entities;
/**
* THIS CLASS WAS GENERATED BY THE DOCTRINE ORM. DO NOT EDIT THIS FILE.
*/
class UsrList extends \Entities\UsrList implements \Doctrine\ORM\Proxy\Proxy
{
private $_entityPersister;
private $_identifier;
public $__isInitialized__ = false;
public function __construct($entityPersister, $identifier)
{
$this->_entityPersister = $entityPersister;
$this->_identifier = $identifier;
}
/** @private */
public function __load()
{
if (!$this->__isInitialized__ && $this->_entityPersister) {
$this->__isInitialized__ = true;
if (method_exists($this, "__wakeup")) {
// call this after __isInitialized__to avoid infinite recursion
// but before loading to emulate what ClassMetadata::newInstance()
// provides.
$this->__wakeup();
}
if ($this->_entityPersister->load($this->_identifier, $this) === null) {
throw new \Doctrine\ORM\EntityNotFoundException();
}
unset($this->_entityPersister, $this->_identifier);
}
}
/** @private */
public function __isInitialized()
{
return $this->__isInitialized__;
}
public function getId()
{
if ($this->__isInitialized__ === false) {
return (int) $this->_identifier["id"];
}
$this->__load();
return parent::getId();
}
public function setName($name)
{
$this->__load();
return parent::setName($name);
}
public function getName()
{
$this->__load();
return parent::getName();
}
public function setCreated($created)
{
$this->__load();
return parent::setCreated($created);
}
public function getCreated()
{
$this->__load();
return parent::getCreated();
}
public function setUpdated($updated)
{
$this->__load();
return parent::setUpdated($updated);
}
public function getUpdated()
{
$this->__load();
return parent::getUpdated();
}
public function addOwner(\Entities\UsrListOwner $owners)
{
$this->__load();
return parent::addOwner($owners);
}
public function removeOwner(\Entities\UsrListOwner $owners)
{
$this->__load();
return parent::removeOwner($owners);
}
public function getOwners()
{
$this->__load();
return parent::getOwners();
}
public function addEntrie(\Entities\UsrListEntry $entries)
{
$this->__load();
return parent::addEntrie($entries);
}
public function removeEntrie(\Entities\UsrListEntry $entries)
{
$this->__load();
return parent::removeEntrie($entries);
}
public function getEntries()
{
$this->__load();
return parent::getEntries();
}
public function hasAccess(\User_Adapter $user, \Alchemy\Phrasea\Application $app)
{
$this->__load();
return parent::hasAccess($user, $app);
}
public function getOwner(\User_Adapter $user, \Alchemy\Phrasea\Application $app)
{
$this->__load();
return parent::getOwner($user, $app);
}
public function has(\User_Adapter $user, \Alchemy\Phrasea\Application $app)
{
$this->__load();
return parent::has($user, $app);
}
public function __sleep()
{
return array('__isInitialized__', 'id', 'name', 'created', 'updated', 'owners', 'entries');
}
public function __clone()
{
if (!$this->__isInitialized__ && $this->_entityPersister) {
$this->__isInitialized__ = true;
$class = $this->_entityPersister->getClassMetadata();
$original = $this->_entityPersister->load($this->_identifier);
if ($original === null) {
throw new \Doctrine\ORM\EntityNotFoundException();
}
foreach ($class->reflFields as $field => $reflProperty) {
$reflProperty->setValue($this, $reflProperty->getValue($original));
}
unset($this->_entityPersister, $this->_identifier);
}
}
}